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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 'sync', | 349 'sync', |
350 ], | 350 ], |
351 'include_dirs': [ | 351 'include_dirs': [ |
352 '..', | 352 '..', |
353 ], | 353 ], |
354 'sources': [ | 354 'sources': [ |
355 'browser/sync/js/js_test_util.cc', | 355 'browser/sync/js/js_test_util.cc', |
356 'browser/sync/js/js_test_util.h', | 356 'browser/sync/js/js_test_util.h', |
357 'browser/sync/test/null_directory_change_delegate.cc', | 357 'browser/sync/test/null_directory_change_delegate.cc', |
358 'browser/sync/test/null_directory_change_delegate.h', | 358 'browser/sync/test/null_directory_change_delegate.h', |
| 359 'browser/sync/test/null_transaction_observer.cc', |
| 360 'browser/sync/test/null_transaction_observer.h', |
359 'browser/sync/test/engine/test_directory_setter_upper.cc', | 361 'browser/sync/test/engine/test_directory_setter_upper.cc', |
360 'browser/sync/test/engine/test_directory_setter_upper.h', | 362 'browser/sync/test/engine/test_directory_setter_upper.h', |
361 ], | 363 ], |
362 }, | 364 }, |
363 { | 365 { |
364 'target_name': 'test_support_syncapi', | 366 'target_name': 'test_support_syncapi', |
365 'type': 'static_library', | 367 'type': 'static_library', |
366 'dependencies': [ | 368 'dependencies': [ |
367 '../base/base.gyp:base', | 369 '../base/base.gyp:base', |
368 'syncapi_core', | 370 'syncapi_core', |
(...skipping 3961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4330 # Use outputs of this action as inputs for the main target build. | 4332 # Use outputs of this action as inputs for the main target build. |
4331 # Seems as a misnomer but makes this happy on Linux (scons). | 4333 # Seems as a misnomer but makes this happy on Linux (scons). |
4332 'process_outputs_as_sources': 1, | 4334 'process_outputs_as_sources': 1, |
4333 }, | 4335 }, |
4334 ], # 'actions' | 4336 ], # 'actions' |
4335 }, | 4337 }, |
4336 ] | 4338 ] |
4337 }], # 'coverage!=0' | 4339 }], # 'coverage!=0' |
4338 ], # 'conditions' | 4340 ], # 'conditions' |
4339 } | 4341 } |
OLD | NEW |