| 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 ], | |
| 105 'dependencies': [ | 93 'dependencies': [ |
| 106 'base_java', | 94 'base_java', |
| 107 'base_jni_headers', | 95 'base_jni_headers', |
| 108 '../build/android/ndk.gyp:cpu_features', | 96 '../build/android/ndk.gyp:cpu_features', |
| 109 '../third_party/ashmem/ashmem.gyp:ashmem', | 97 '../third_party/ashmem/ashmem.gyp:ashmem', |
| 110 ], | 98 ], |
| 111 'link_settings': { | 99 'link_settings': { |
| 112 'libraries': [ | 100 'libraries': [ |
| 113 '-llog', | 101 '-llog', |
| 114 ], | 102 ], |
| (...skipping 1523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1638 '../build/isolate.gypi', | 1626 '../build/isolate.gypi', |
| 1639 ], | 1627 ], |
| 1640 'sources': [ | 1628 'sources': [ |
| 1641 'base_unittests.isolate', | 1629 'base_unittests.isolate', |
| 1642 ], | 1630 ], |
| 1643 }, | 1631 }, |
| 1644 ], | 1632 ], |
| 1645 }], | 1633 }], |
| 1646 ], | 1634 ], |
| 1647 } | 1635 } |
| OLD | NEW |