| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # IMPORTANT: | 5 # IMPORTANT: |
| 6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
| 7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
| 8 { | 8 { |
| 9 # Variables expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
| 10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
| (...skipping 4540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4551 ], | 4551 ], |
| 4552 }], | 4552 }], |
| 4553 ['use_custom_libcxx==1', { | 4553 ['use_custom_libcxx==1', { |
| 4554 'dependencies': [ | 4554 'dependencies': [ |
| 4555 '<(DEPTH)/buildtools/third_party/libc++/libc++.gyp:libcxx_proxy', | 4555 '<(DEPTH)/buildtools/third_party/libc++/libc++.gyp:libcxx_proxy', |
| 4556 ], | 4556 ], |
| 4557 }], | 4557 }], |
| 4558 ['order_profiling!=0 and OS=="android"', { | 4558 ['order_profiling!=0 and OS=="android"', { |
| 4559 'target_conditions' : [ | 4559 'target_conditions' : [ |
| 4560 ['_toolset=="target"', { | 4560 ['_toolset=="target"', { |
| 4561 'cflags': ['-finstrument-functions'], |
| 4562 'defines': ['CYGPROFILE_INSTRUMENTATION'], |
| 4563 }], |
| 4564 ], |
| 4565 }], |
| 4566 # Clang doesn't understand -finstrument-functions-exclude-file-list=. |
| 4567 ['order_profiling!=0 and OS=="android" and clang==0', { |
| 4568 'target_conditions' : [ |
| 4569 ['_toolset=="target"', { |
| 4561 'cflags': [ | 4570 'cflags': [ |
| 4562 '-finstrument-functions', | |
| 4563 # Allow mmx intrinsics to inline, so that the | 4571 # Allow mmx intrinsics to inline, so that the |
| 4564 # compiler can expand the intrinsics. | 4572 # compiler can expand the intrinsics. |
| 4565 '-finstrument-functions-exclude-file-list=mmintrin.h', | 4573 '-finstrument-functions-exclude-file-list=mmintrin.h', |
| 4566 # Avoids errors with current NDK: | 4574 # Avoids errors with current NDK: |
| 4567 # "third_party/android_tools/ndk/toolchains/arm-linux-androide
abi-4.6/prebuilt/linux-x86_64/bin/../lib/gcc/arm-linux-androideabi/4.6/include/a
rm_neon.h:3426:3: error: argument must be a constant" | 4575 # "third_party/android_tools/ndk/toolchains/arm-linux-androide
abi-4.6/prebuilt/linux-x86_64/bin/../lib/gcc/arm-linux-androideabi/4.6/include/a
rm_neon.h:3426:3: error: argument must be a constant" |
| 4568 '-finstrument-functions-exclude-file-list=arm_neon.h', | 4576 '-finstrument-functions-exclude-file-list=arm_neon.h', |
| 4569 ], | 4577 ], |
| 4570 'defines': ['CYGPROFILE_INSTRUMENTATION'], | |
| 4571 }], | 4578 }], |
| 4572 ], | 4579 ], |
| 4573 }], | 4580 }], |
| 4574 ['linux_dump_symbols==1', { | 4581 ['linux_dump_symbols==1', { |
| 4575 'cflags': [ '-g' ], | 4582 'cflags': [ '-g' ], |
| 4576 'conditions': [ | 4583 'conditions': [ |
| 4577 ['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0'
, { | 4584 ['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0'
, { |
| 4578 'target_conditions': [ | 4585 'target_conditions': [ |
| 4579 ['_toolset=="target"', { | 4586 ['_toolset=="target"', { |
| 4580 'ldflags': [ | 4587 'ldflags': [ |
| (...skipping 1755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6336 # settings in target dicts. SYMROOT is a special case, because many other | 6343 # settings in target dicts. SYMROOT is a special case, because many other |
| 6337 # Xcode variables depend on it, including variables such as | 6344 # Xcode variables depend on it, including variables such as |
| 6338 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6345 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6339 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6346 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6340 # files to appear (when present) in the UI as actual files and not red | 6347 # files to appear (when present) in the UI as actual files and not red |
| 6341 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6348 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6342 # and therefore SYMROOT, needs to be set at the project level. | 6349 # and therefore SYMROOT, needs to be set at the project level. |
| 6343 'SYMROOT': '<(DEPTH)/xcodebuild', | 6350 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6344 }, | 6351 }, |
| 6345 } | 6352 } |
| OLD | NEW |