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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 ['exclude', '^native_library_linux\\.cc$'], | 83 ['exclude', '^native_library_linux\\.cc$'], |
84 ['exclude', '^process_util_linux\\.cc$'], | 84 ['exclude', '^process_util_linux\\.cc$'], |
85 ['exclude', '^sys_info_linux\\.cc$'], | 85 ['exclude', '^sys_info_linux\\.cc$'], |
86 ['exclude', '^sys_string_conversions_linux\\.cc$'], | 86 ['exclude', '^sys_string_conversions_linux\\.cc$'], |
87 ['exclude', '^worker_pool_linux\\.cc$'], | 87 ['exclude', '^worker_pool_linux\\.cc$'], |
88 ], | 88 ], |
89 }], | 89 }], |
90 ], | 90 ], |
91 }], | 91 }], |
92 ['OS == "android" and _toolset == "target"', { | 92 ['OS == "android" and _toolset == "target"', { |
| 93 'conditions': [ |
| 94 ['target_arch == "ia32" or target_arch == "x64"', { |
| 95 'sources/': [ |
| 96 ['include', '^atomicops_internals_x86_gcc\\.cc$'], |
| 97 ], |
| 98 }], |
| 99 ['target_arch == "mipsel"', { |
| 100 'sources/': [ |
| 101 ['include', '^atomicops_internals_mips_gcc\\.cc$'], |
| 102 ], |
| 103 }], |
| 104 ], |
93 'dependencies': [ | 105 'dependencies': [ |
94 'base_java', | 106 'base_java', |
95 'base_jni_headers', | 107 'base_jni_headers', |
96 '../build/android/ndk.gyp:cpu_features', | 108 '../build/android/ndk.gyp:cpu_features', |
97 '../third_party/ashmem/ashmem.gyp:ashmem', | 109 '../third_party/ashmem/ashmem.gyp:ashmem', |
98 ], | 110 ], |
99 'link_settings': { | 111 'link_settings': { |
100 'libraries': [ | 112 'libraries': [ |
101 '-llog', | 113 '-llog', |
102 ], | 114 ], |
(...skipping 1523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1626 '../build/isolate.gypi', | 1638 '../build/isolate.gypi', |
1627 ], | 1639 ], |
1628 'sources': [ | 1640 'sources': [ |
1629 'base_unittests.isolate', | 1641 'base_unittests.isolate', |
1630 ], | 1642 ], |
1631 }, | 1643 }, |
1632 ], | 1644 ], |
1633 }], | 1645 }], |
1634 ], | 1646 ], |
1635 } | 1647 } |
OLD | NEW |