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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 182313002: Include sync.pb.h in sync_data.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Apply CR feedback. Created 6 years, 9 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
OLDNEW
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 '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 'browser', 14 'browser',
15 'browser_real',
maniscalco 2014/03/07 23:44:39 Needed because ui_test_utils.h includes history_se
Nico 2014/03/08 00:45:57 I think browser_real is supposed to be an implemen
maniscalco 2014/03/08 01:27:00 You're right, this dependency on browser_real is r
15 'chrome_resources.gyp:chrome_resources', 16 'chrome_resources.gyp:chrome_resources',
16 'chrome_resources.gyp:chrome_strings', 17 'chrome_resources.gyp:chrome_strings',
17 'chrome_resources.gyp:theme_resources', 18 'chrome_resources.gyp:theme_resources',
18 'common', 19 'common',
19 '../base/base.gyp:base_prefs_test_support', 20 '../base/base.gyp:base_prefs_test_support',
20 '../base/base.gyp:test_support_base', 21 '../base/base.gyp:test_support_base',
21 '../components/components.gyp:password_manager_core_browser_test_support ', 22 '../components/components.gyp:password_manager_core_browser_test_support ',
22 '../components/components.gyp:sync_driver_test_support', 23 '../components/components.gyp:sync_driver_test_support',
23 '../content/content.gyp:content_app_both', 24 '../content/content.gyp:content_app_both',
24 '../content/content_shell_and_tests.gyp:test_support_content', 25 '../content/content_shell_and_tests.gyp:test_support_content',
25 '../net/net.gyp:net', 26 '../net/net.gyp:net',
26 '../net/net.gyp:net_test_support', 27 '../net/net.gyp:net_test_support',
27 '../skia/skia.gyp:skia', 28 '../skia/skia.gyp:skia',
28 '../sql/sql.gyp:sql', 29 '../sql/sql.gyp:sql',
29 '../sql/sql.gyp:test_support_sql', 30 '../sql/sql.gyp:test_support_sql',
30 '../sync/sync.gyp:sync', 31 '../sync/sync.gyp:sync',
31 '../testing/gmock.gyp:gmock', 32 '../testing/gmock.gyp:gmock',
32 '../testing/gtest.gyp:gtest', 33 '../testing/gtest.gyp:gtest',
33 '../third_party/zlib/zlib.gyp:zlib', 34 '../third_party/zlib/zlib.gyp:zlib',
34 '../ui/message_center/message_center.gyp:message_center_test_support', 35 '../ui/message_center/message_center.gyp:message_center_test_support',
35 ], 36 ],
36 'export_dependent_settings': [ 37 'export_dependent_settings': [
38 'browser_real',
maniscalco 2014/03/07 23:44:39 history_service.h (part of browser_real) includes
maniscalco 2014/03/08 01:27:00 Correction: we need to export browser's settings a
37 '../base/base.gyp:test_support_base', 39 '../base/base.gyp:test_support_base',
38 '../content/content_shell_and_tests.gyp:test_support_content', 40 '../content/content_shell_and_tests.gyp:test_support_content',
39 ], 41 ],
40 'include_dirs': [ 42 'include_dirs': [
41 '..', 43 '..',
42 ], 44 ],
43 'sources': [ 45 'sources': [
44 'app/chrome_main_delegate.cc', 46 'app/chrome_main_delegate.cc',
45 'app/chrome_main_delegate.h', 47 'app/chrome_main_delegate.h',
46 'browser/android/bookmarks/partner_bookmarks_shim_unittest.cc', 48 'browser/android/bookmarks/partner_bookmarks_shim_unittest.cc',
(...skipping 2838 matching lines...) Expand 10 before | Expand all | Expand 10 after
2885 'browser/ui/app_list/test/fake_profile_store.h', 2887 'browser/ui/app_list/test/fake_profile_store.h',
2886 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', 2888 'browser/ui/app_list/test/fast_show_pickler_unittest.cc',
2887 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', 2889 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc',
2888 'browser/ui/views/app_list/win/app_list_win_unittest.cc', 2890 'browser/ui/views/app_list/win/app_list_win_unittest.cc',
2889 ], 2891 ],
2890 }, 2892 },
2891 ], 2893 ],
2892 }], 2894 }],
2893 ], # 'conditions' 2895 ], # 'conditions'
2894 } 2896 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698