Roll src/third_party/WebKit e0eac24:489c548 (svn 193311:193320)
[chromium-blink-merge.git] / build / config / mac / BUILD.gn
blob9288add13952d3ba3ee0d4fac2019ae510761824
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import("//build/config/sysroot.gni")
7 config("sdk") {
8   common_flags = [
9     "-isysroot",
10     sysroot,
11     "-mmacosx-version-min=10.6",
12   ]
14   cflags = common_flags
15   ldflags = common_flags
18 # On Mac, this is used for everything except static libraries.
19 config("mac_dynamic_flags") {
20   ldflags = [
21     "-Wl,-search_paths_first",
22     "-L.",
24     # Path for loading shared libraries for unbundled binaries.
25     "-Wl,-rpath,@loader_path/.",
27     # Path for loading shared libraries for bundled binaries. Get back from
28     # Binary.app/Contents/MacOS.
29     "-Wl,-rpath,@loader_path/../../..",
30   ]
33 # On Mac, this is used only for executables.
34 config("mac_executable_flags") {
35   ldflags = [ "-Wl,-pie" ]  # Position independent.