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 2515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2526 }], | 2526 }], |
2527 ], | 2527 ], |
2528 }], | 2528 }], |
2529 ], | 2529 ], |
2530 }], | 2530 }], |
2531 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', { | 2531 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', { |
2532 'target_conditions' : [ | 2532 'target_conditions' : [ |
2533 ['_toolset=="target"', { | 2533 ['_toolset=="target"', { |
2534 'cflags': [ | 2534 'cflags': [ |
2535 '-finstrument-functions', | 2535 '-finstrument-functions', |
| 2536 # Allow mmx intrinsics to inline, so that the |
| 2537 # compiler can expand the intrinsics. |
| 2538 '-finstrument-functions-exclude-file-list=mmintrin.h', |
2536 ], | 2539 ], |
2537 }], | 2540 }], |
2538 ], | 2541 ], |
2539 }], | 2542 }], |
2540 ['linux_breakpad==1', { | 2543 ['linux_breakpad==1', { |
2541 'cflags': [ '-g' ], | 2544 'cflags': [ '-g' ], |
2542 'defines': ['USE_LINUX_BREAKPAD'], | 2545 'defines': ['USE_LINUX_BREAKPAD'], |
2543 }], | 2546 }], |
2544 ['linux_use_heapchecker==1', { | 2547 ['linux_use_heapchecker==1', { |
2545 'variables': {'linux_use_tcmalloc%': 1}, | 2548 'variables': {'linux_use_tcmalloc%': 1}, |
(...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3508 # settings in target dicts. SYMROOT is a special case, because many other | 3511 # settings in target dicts. SYMROOT is a special case, because many other |
3509 # Xcode variables depend on it, including variables such as | 3512 # Xcode variables depend on it, including variables such as |
3510 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3513 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3511 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3514 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3512 # files to appear (when present) in the UI as actual files and not red | 3515 # files to appear (when present) in the UI as actual files and not red |
3513 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3516 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3514 # and therefore SYMROOT, needs to be set at the project level. | 3517 # and therefore SYMROOT, needs to be set at the project level. |
3515 'SYMROOT': '<(DEPTH)/xcodebuild', | 3518 'SYMROOT': '<(DEPTH)/xcodebuild', |
3516 }, | 3519 }, |
3517 } | 3520 } |
OLD | NEW |