Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(868)

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 11412211: [sync] Componentize sync: Part Final: Target 'sync' is now its own component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + merge with net->sync dependency fix (no code changes) Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2012 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 'targets': [ 5 'targets': [
6 { 6 {
7 # This target contains mocks and test utilities that don't belong in 7 # This target contains mocks and test utilities that don't belong in
8 # production libraries but are used by more than one test executable. 8 # production libraries but are used by more than one test executable.
9 'target_name': 'test_support_common', 9 'target_name': 'test_support_common',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 # NOTE: New dependencies should generally be added in the OS!="ios" 12 # NOTE: New dependencies should generally be added in the OS!="ios"
13 # dependencies block below, rather than here. 13 # dependencies block below, rather than here.
14 'app/policy/cloud_policy_codegen.gyp:policy_test_support', 14 'app/policy/cloud_policy_codegen.gyp:policy_test_support',
15 'browser', 15 'browser',
16 '../sync/protocol/sync_proto.gyp:sync_proto',
17 'chrome_resources.gyp:chrome_resources', 16 'chrome_resources.gyp:chrome_resources',
18 'chrome_resources.gyp:chrome_strings', 17 'chrome_resources.gyp:chrome_strings',
19 'chrome_resources.gyp:theme_resources', 18 'chrome_resources.gyp:theme_resources',
20 'common', 19 'common',
21 '../base/base.gyp:test_support_base', 20 '../base/base.gyp:test_support_base',
22 '../base/base.gyp:base_prefs_test_support', 21 '../base/base.gyp:base_prefs_test_support',
23 '../content/content.gyp:content_app', 22 '../content/content.gyp:content_app',
24 '../content/content.gyp:test_support_content', 23 '../content/content.gyp:test_support_content',
25 '../media/media.gyp:media_test_support', 24 '../media/media.gyp:media_test_support',
26 '../net/net.gyp:net', 25 '../net/net.gyp:net',
27 '../net/net.gyp:net_test_support', 26 '../net/net.gyp:net_test_support',
28 '../skia/skia.gyp:skia', 27 '../skia/skia.gyp:skia',
28 '../sync/sync.gyp:sync_proto',
29 '../testing/gmock.gyp:gmock', 29 '../testing/gmock.gyp:gmock',
30 '../testing/gtest.gyp:gtest', 30 '../testing/gtest.gyp:gtest',
31 ], 31 ],
32 'export_dependent_settings': [ 32 'export_dependent_settings': [
33 'app/policy/cloud_policy_codegen.gyp:policy_test_support', 33 'app/policy/cloud_policy_codegen.gyp:policy_test_support',
34 '../base/base.gyp:test_support_base', 34 '../base/base.gyp:test_support_base',
35 ], 35 ],
36 'include_dirs': [ 36 'include_dirs': [
37 '..', 37 '..',
38 ], 38 ],
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 'target_name': 'test_support_unit', 327 'target_name': 'test_support_unit',
328 'type': 'static_library', 328 'type': 'static_library',
329 'dependencies': [ 329 'dependencies': [
330 'chrome_resources.gyp:chrome_resources', 330 'chrome_resources.gyp:chrome_resources',
331 'chrome_resources.gyp:chrome_strings', 331 'chrome_resources.gyp:chrome_strings',
332 'browser', 332 'browser',
333 'common', 333 'common',
334 'test_support_common', 334 'test_support_common',
335 '../base/base.gyp:base', 335 '../base/base.gyp:base',
336 '../skia/skia.gyp:skia', 336 '../skia/skia.gyp:skia',
337 '../sync/sync.gyp:sync', 337 '../sync/sync.gyp:sync_core',
338 '../testing/gmock.gyp:gmock', 338 '../testing/gmock.gyp:gmock',
339 '../testing/gtest.gyp:gtest', 339 '../testing/gtest.gyp:gtest',
340 ], 340 ],
341 'include_dirs': [ 341 'include_dirs': [
342 '..', 342 '..',
343 ], 343 ],
344 'sources': [ 344 'sources': [
345 'browser/sync/profile_sync_service_mock.cc', 345 'browser/sync/profile_sync_service_mock.cc',
346 'browser/sync/profile_sync_service_mock.h', 346 'browser/sync/profile_sync_service_mock.h',
347 'test/base/run_all_unittests.cc', 347 'test/base/run_all_unittests.cc',
(...skipping 17 matching lines...) Expand all
365 # NOTE: New dependencies should generally be added in the OS!="ios" 365 # NOTE: New dependencies should generally be added in the OS!="ios"
366 # dependencies block below, rather than here. 366 # dependencies block below, rather than here.
367 # Unit tests should only depend on: 367 # Unit tests should only depend on:
368 # 1) everything that the chrome binaries depend on: 368 # 1) everything that the chrome binaries depend on:
369 '<@(chromium_dependencies)', 369 '<@(chromium_dependencies)',
370 # 2) test-specific support libraries: 370 # 2) test-specific support libraries:
371 '../base/base.gyp:test_support_base', 371 '../base/base.gyp:test_support_base',
372 '../media/media.gyp:media_test_support', 372 '../media/media.gyp:media_test_support',
373 '../net/net.gyp:net', 373 '../net/net.gyp:net',
374 '../net/net.gyp:net_test_support', 374 '../net/net.gyp:net_test_support',
375 '../testing/gmock.gyp:gmock', 375 '../sync/sync.gyp:sync_core',
376 '../testing/gtest.gyp:gtest', 376 '../sync/sync.gyp:sync_internal_api',
377 'test_support_common', 377 '../sync/sync.gyp:sync_notifier',
378 '../sync/sync.gyp:sync_proto',
378 '../sync/sync.gyp:test_support_sync_api', 379 '../sync/sync.gyp:test_support_sync_api',
379 '../sync/sync.gyp:test_support_sync_core', 380 '../sync/sync.gyp:test_support_sync_core',
380 '../sync/sync.gyp:test_support_sync_internal_api', 381 '../sync/sync.gyp:test_support_sync_internal_api',
381 '../sync/sync.gyp:test_support_sync_notifier', 382 '../sync/sync.gyp:test_support_sync_notifier',
383 '../testing/gmock.gyp:gmock',
384 '../testing/gtest.gyp:gtest',
385 'test_support_common',
382 'test_support_unit', 386 'test_support_unit',
383 # 3) anything tests directly depend on 387 # 3) anything tests directly depend on
384 '../google_apis/google_apis.gyp:google_apis', 388 '../google_apis/google_apis.gyp:google_apis',
385 '../skia/skia.gyp:skia', 389 '../skia/skia.gyp:skia',
386 '../third_party/bzip2/bzip2.gyp:bzip2', 390 '../third_party/bzip2/bzip2.gyp:bzip2',
387 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 391 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
388 '../third_party/icu/icu.gyp:icui18n', 392 '../third_party/icu/icu.gyp:icui18n',
389 '../third_party/icu/icu.gyp:icuuc', 393 '../third_party/icu/icu.gyp:icuuc',
390 '../third_party/libxml/libxml.gyp:libxml', 394 '../third_party/libxml/libxml.gyp:libxml',
391 '../ui/ui.gyp:ui_resources', 395 '../ui/ui.gyp:ui_resources',
(...skipping 1955 matching lines...) Expand 10 before | Expand all | Expand 10 after
2347 'unit_tests.isolate', 2351 'unit_tests.isolate',
2348 ], 2352 ],
2349 'sources': [ 2353 'sources': [
2350 'unit_tests.isolate', 2354 'unit_tests.isolate',
2351 ], 2355 ],
2352 }, 2356 },
2353 ], 2357 ],
2354 }], 2358 }],
2355 ], # 'conditions' 2359 ], # 'conditions'
2356 } 2360 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698