| 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_jni_headers', | 94 'base_jni_headers', |
| 107 '../third_party/ashmem/ashmem.gyp:ashmem', | 95 '../third_party/ashmem/ashmem.gyp:ashmem', |
| 108 ], | 96 ], |
| 109 'link_settings': { | 97 'link_settings': { |
| 110 'libraries': [ | 98 'libraries': [ |
| 111 '-llog', | 99 '-llog', |
| 112 ], | 100 ], |
| 113 }, | 101 }, |
| 114 'sources!': [ | 102 'sources!': [ |
| (...skipping 1373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1488 'dependencies': [ | 1476 'dependencies': [ |
| 1489 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1477 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 1490 ], | 1478 ], |
| 1491 }], | 1479 }], |
| 1492 ], | 1480 ], |
| 1493 }, | 1481 }, |
| 1494 ], | 1482 ], |
| 1495 }], | 1483 }], |
| 1496 ], | 1484 ], |
| 1497 } | 1485 } |
| OLD | NEW |