OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables' : { | 5 'variables' : { |
6 # Variables for js2gtest rules | 6 # Variables for js2gtest rules |
7 'gypv8sh': '../tools/gypv8sh.py', | 7 'gypv8sh': '../tools/gypv8sh.py', |
8 'js2gtest': 'test/base/js2gtest.js', | 8 'js2gtest': 'test/base/js2gtest.js', |
9 'mock_js': 'third_party/mock4js/mock4js.js', | 9 'mock_js': 'third_party/mock4js/mock4js.js', |
10 'test_api_js': 'test/data/webui/test_api.js', | 10 'test_api_js': 'test/data/webui/test_api.js', |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 'sync', | 347 'sync', |
348 ], | 348 ], |
349 'include_dirs': [ | 349 'include_dirs': [ |
350 '..', | 350 '..', |
351 ], | 351 ], |
352 'sources': [ | 352 'sources': [ |
353 'browser/sync/js/js_test_util.cc', | 353 'browser/sync/js/js_test_util.cc', |
354 'browser/sync/js/js_test_util.h', | 354 'browser/sync/js/js_test_util.h', |
355 'browser/sync/test/null_directory_change_delegate.cc', | 355 'browser/sync/test/null_directory_change_delegate.cc', |
356 'browser/sync/test/null_directory_change_delegate.h', | 356 'browser/sync/test/null_directory_change_delegate.h', |
| 357 'browser/sync/test/null_transaction_observer.cc', |
| 358 'browser/sync/test/null_transaction_observer.h', |
357 'browser/sync/test/engine/test_directory_setter_upper.cc', | 359 'browser/sync/test/engine/test_directory_setter_upper.cc', |
358 'browser/sync/test/engine/test_directory_setter_upper.h', | 360 'browser/sync/test/engine/test_directory_setter_upper.h', |
359 ], | 361 ], |
360 }, | 362 }, |
361 { | 363 { |
362 'target_name': 'test_support_syncapi', | 364 'target_name': 'test_support_syncapi', |
363 'type': 'static_library', | 365 'type': 'static_library', |
364 'dependencies': [ | 366 'dependencies': [ |
365 '../base/base.gyp:base', | 367 '../base/base.gyp:base', |
366 'syncapi_core', | 368 'syncapi_core', |
(...skipping 3906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4273 # Use outputs of this action as inputs for the main target build. | 4275 # Use outputs of this action as inputs for the main target build. |
4274 # Seems as a misnomer but makes this happy on Linux (scons). | 4276 # Seems as a misnomer but makes this happy on Linux (scons). |
4275 'process_outputs_as_sources': 1, | 4277 'process_outputs_as_sources': 1, |
4276 }, | 4278 }, |
4277 ], # 'actions' | 4279 ], # 'actions' |
4278 }, | 4280 }, |
4279 ] | 4281 ] |
4280 }], # 'coverage!=0' | 4282 }], # 'coverage!=0' |
4281 ], # 'conditions' | 4283 ], # 'conditions' |
4282 } | 4284 } |
OLD | NEW |