OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 6 'targets': [ |
7 # Test support files for the 'sync_core' target. | 7 # Test support files for the 'sync_core' target. |
8 # GN version: //sync:test_support_sync_core | 8 # GN version: //sync:test_support_sync_core |
9 { | 9 { |
10 'target_name': 'test_support_sync_core', | 10 'target_name': 'test_support_sync_core', |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 'syncable/syncable_id_unittest.cc', | 347 'syncable/syncable_id_unittest.cc', |
348 'syncable/syncable_unittest.cc', | 348 'syncable/syncable_unittest.cc', |
349 'syncable/syncable_util_unittest.cc', | 349 'syncable/syncable_util_unittest.cc', |
350 'util/cryptographer_unittest.cc', | 350 'util/cryptographer_unittest.cc', |
351 'util/data_type_histogram_unittest.cc', | 351 'util/data_type_histogram_unittest.cc', |
352 'util/get_session_name_unittest.cc', | 352 'util/get_session_name_unittest.cc', |
353 'util/nigori_unittest.cc', | 353 'util/nigori_unittest.cc', |
354 'util/protobuf_unittest.cc', | 354 'util/protobuf_unittest.cc', |
355 ], | 355 ], |
356 'conditions': [ | 356 'conditions': [ |
357 # TODO(akalin): This is needed because histogram.cc uses | |
358 # leak_annotations.h, which pulls this in. Make 'base' | |
359 # propagate this dependency. | |
360 ['OS=="linux" and use_allocator!="none"', { | |
361 'dependencies': [ | |
362 '../base/allocator/allocator.gyp:allocator', | |
363 ], | |
364 }], | |
365 ['OS == "android"', { | 357 ['OS == "android"', { |
366 'dependencies': [ | 358 'dependencies': [ |
367 '../testing/android/native_test.gyp:native_test_native_code', | 359 '../testing/android/native_test.gyp:native_test_native_code', |
368 ], | 360 ], |
369 }], | 361 }], |
370 ['OS=="linux" and chromeos==1', { | 362 ['OS=="linux" and chromeos==1', { |
371 # Required by get_session_name_unittest.cc on Chrome OS. | 363 # Required by get_session_name_unittest.cc on Chrome OS. |
372 'dependencies': [ | 364 'dependencies': [ |
373 '../chromeos/chromeos.gyp:chromeos', | 365 '../chromeos/chromeos.gyp:chromeos', |
374 ], | 366 ], |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 '../build/isolate.gypi', | 535 '../build/isolate.gypi', |
544 ], | 536 ], |
545 'sources': [ | 537 'sources': [ |
546 'sync_unit_tests.isolate', | 538 'sync_unit_tests.isolate', |
547 ], | 539 ], |
548 }, | 540 }, |
549 ], | 541 ], |
550 }], | 542 }], |
551 ], | 543 ], |
552 } | 544 } |
OLD | NEW |