| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 # This library should build cleanly with the extra warnings turned on | 7 # This library should build cleanly with the extra warnings turned on |
| 8 # for Chromium. | 8 # for Chromium. |
| 9 'chromium_code': 1, | 9 'chromium_code': 1, |
| 10 }, | 10 }, |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 ['test_isolation_mode != "noop"', { | 175 ['test_isolation_mode != "noop"', { |
| 176 'targets': [ | 176 'targets': [ |
| 177 { | 177 { |
| 178 'target_name': 'cacheinvalidation_unittests_run', | 178 'target_name': 'cacheinvalidation_unittests_run', |
| 179 'type': 'none', | 179 'type': 'none', |
| 180 'dependencies': [ | 180 'dependencies': [ |
| 181 'cacheinvalidation_unittests', | 181 'cacheinvalidation_unittests', |
| 182 ], | 182 ], |
| 183 'includes': [ | 183 'includes': [ |
| 184 '../../build/isolate.gypi', | 184 '../../build/isolate.gypi', |
| 185 'cacheinvalidation_unittests.isolate', | |
| 186 ], | 185 ], |
| 187 'sources': [ | 186 'sources': [ |
| 188 'cacheinvalidation_unittests.isolate', | 187 'cacheinvalidation_unittests.isolate', |
| 189 ], | 188 ], |
| 190 }, | 189 }, |
| 191 ], | 190 ], |
| 192 }], | 191 }], |
| 193 ['OS == "android"', { | 192 ['OS == "android"', { |
| 194 'variables': { | 193 'variables': { |
| 195 'emma_never_instrument': 1, | 194 'emma_never_instrument': 1, |
| (...skipping 27 matching lines...) Expand all Loading... |
| 223 'variables': { | 222 'variables': { |
| 224 'java_in_dir': '../../build/android/empty', | 223 'java_in_dir': '../../build/android/empty', |
| 225 'additional_src_dirs': [ 'src/java/' ], | 224 'additional_src_dirs': [ 'src/java/' ], |
| 226 }, | 225 }, |
| 227 'includes': [ '../../build/java.gypi' ], | 226 'includes': [ '../../build/java.gypi' ], |
| 228 }, | 227 }, |
| 229 ], | 228 ], |
| 230 }], | 229 }], |
| 231 ], | 230 ], |
| 232 } | 231 } |
| OLD | NEW |