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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 }], | 127 }], |
128 ], | 128 ], |
129 }], | 129 }], |
130 ['OS == "android" and _toolset == "target"', { | 130 ['OS == "android" and _toolset == "target"', { |
131 'conditions': [ | 131 'conditions': [ |
132 ['target_arch == "ia32"', { | 132 ['target_arch == "ia32"', { |
133 'sources/': [ | 133 'sources/': [ |
134 ['include', '^atomicops_internals_x86_gcc\\.cc$'], | 134 ['include', '^atomicops_internals_x86_gcc\\.cc$'], |
135 ], | 135 ], |
136 }], | 136 }], |
| 137 ['target_arch == "mipsel"', { |
| 138 'sources/': [ |
| 139 ['include', '^atomicops_internals_mips_gcc\\.cc$'], |
| 140 ], |
| 141 }], |
137 ], | 142 ], |
138 'dependencies': [ | 143 'dependencies': [ |
139 'base_jni_headers', | 144 'base_jni_headers', |
140 'symbolize', | 145 'symbolize', |
141 '../third_party/ashmem/ashmem.gyp:ashmem', | 146 '../third_party/ashmem/ashmem.gyp:ashmem', |
142 '../third_party/icu/icu.gyp:icuuc', | 147 '../third_party/icu/icu.gyp:icuuc', |
143 ], | 148 ], |
144 'include_dirs': [ | 149 'include_dirs': [ |
145 '<(SHARED_INTERMEDIATE_DIR)/base', | 150 '<(SHARED_INTERMEDIATE_DIR)/base', |
146 ], | 151 ], |
(...skipping 1078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1225 'base_unittests.isolate', | 1230 'base_unittests.isolate', |
1226 ], | 1231 ], |
1227 'sources': [ | 1232 'sources': [ |
1228 'base_unittests.isolate', | 1233 'base_unittests.isolate', |
1229 ], | 1234 ], |
1230 }, | 1235 }, |
1231 ], | 1236 ], |
1232 }], | 1237 }], |
1233 ], | 1238 ], |
1234 } | 1239 } |
OLD | NEW |