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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
(...skipping 17 matching lines...) Expand all Loading... |
28 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat
ions', | 28 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat
ions', |
29 ], | 29 ], |
30 # TODO(gregoryd): direct_dependent_settings should be shared with the | 30 # TODO(gregoryd): direct_dependent_settings should be shared with the |
31 # 64-bit target, but it doesn't work due to a bug in gyp | 31 # 64-bit target, but it doesn't work due to a bug in gyp |
32 'direct_dependent_settings': { | 32 'direct_dependent_settings': { |
33 'include_dirs': [ | 33 'include_dirs': [ |
34 '..', | 34 '..', |
35 ], | 35 ], |
36 }, | 36 }, |
37 'conditions': [ | 37 'conditions': [ |
| 38 [ 'order_profiling!=0', { |
| 39 'conditions': [ |
| 40 ['OS == "android" and _toolset == "target"', { |
| 41 'dependencies': [ 'android/third_party/cygprofile_startup/cygprofi
le_startup.gyp:cygprofile_startup' ], |
| 42 }], |
| 43 ], |
| 44 }], # order_profiling!=0 |
38 ['use_glib==1', { | 45 ['use_glib==1', { |
39 'conditions': [ | 46 'conditions': [ |
40 ['chromeos==1', { | 47 ['chromeos==1', { |
41 'sources/': [ ['include', '_chromeos\\.cc$'] ] | 48 'sources/': [ ['include', '_chromeos\\.cc$'] ] |
42 }], | 49 }], |
43 ['linux_use_tcmalloc==0', { | 50 ['linux_use_tcmalloc==0', { |
44 'defines': [ | 51 'defines': [ |
45 'NO_TCMALLOC', | 52 'NO_TCMALLOC', |
46 ], | 53 ], |
47 'direct_dependent_settings': { | 54 'direct_dependent_settings': { |
(...skipping 973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1021 'test_suite_name': 'base_unittests', | 1028 'test_suite_name': 'base_unittests', |
1022 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit
tests<(SHARED_LIB_SUFFIX)', | 1029 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit
tests<(SHARED_LIB_SUFFIX)', |
1023 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], | 1030 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], |
1024 }, | 1031 }, |
1025 'includes': [ '../build/apk_test.gypi' ], | 1032 'includes': [ '../build/apk_test.gypi' ], |
1026 }, | 1033 }, |
1027 ], | 1034 ], |
1028 }], | 1035 }], |
1029 ], | 1036 ], |
1030 } | 1037 } |
OLD | NEW |