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 4547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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': [ | 4561 'cflags': [ |
4562 '-finstrument-functions', | 4562 '-finstrument-functions', |
4563 # Allow mmx intrinsics to inline, so that the | 4563 # Allow mmx intrinsics to inline, so that the |
4564 # compiler can expand the intrinsics. | 4564 # compiler can expand the intrinsics. |
4565 '-finstrument-functions-exclude-file-list=mmintrin.h', | 4565 '-finstrument-functions-exclude-file-list=mmintrin.h', |
4566 # Avoids errors with current NDK: | 4566 # 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" | 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" |
4568 '-finstrument-functions-exclude-file-list=arm_neon.h,Saturated
ArithmeticARM.h', | 4568 '-finstrument-functions-exclude-file-list=arm_neon.h', |
4569 ], | 4569 ], |
4570 'defines': ['CYGPROFILE_INSTRUMENTATION'], | 4570 'defines': ['CYGPROFILE_INSTRUMENTATION'], |
4571 }], | 4571 }], |
4572 ], | 4572 ], |
4573 }], | 4573 }], |
4574 ['linux_dump_symbols==1', { | 4574 ['linux_dump_symbols==1', { |
4575 'cflags': [ '-g' ], | 4575 'cflags': [ '-g' ], |
4576 'conditions': [ | 4576 'conditions': [ |
4577 ['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0'
, { | 4577 ['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0'
, { |
4578 'target_conditions': [ | 4578 'target_conditions': [ |
(...skipping 1757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6336 # settings in target dicts. SYMROOT is a special case, because many other | 6336 # settings in target dicts. SYMROOT is a special case, because many other |
6337 # Xcode variables depend on it, including variables such as | 6337 # Xcode variables depend on it, including variables such as |
6338 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6338 # 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 | 6339 # 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 | 6340 # 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, | 6341 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6342 # and therefore SYMROOT, needs to be set at the project level. | 6342 # and therefore SYMROOT, needs to be set at the project level. |
6343 'SYMROOT': '<(DEPTH)/xcodebuild', | 6343 'SYMROOT': '<(DEPTH)/xcodebuild', |
6344 }, | 6344 }, |
6345 } | 6345 } |
OLD | NEW |