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

Side by Side Diff: chrome/test/BUILD.gn

Issue 1305213009: Componentize PrefSyncableService and support classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pref_service_syncable
Patch Set: Add missing dependency on //sync:test_support_sync_api for unit tests with gn Created 5 years, 3 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/test/base/testing_pref_service_syncable.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//chrome/chrome_tests.gni") 10 import("//chrome/chrome_tests.gni")
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "base/test_launcher_utils.cc", 61 "base/test_launcher_utils.cc",
62 "base/test_launcher_utils.h", 62 "base/test_launcher_utils.h",
63 "base/test_switches.cc", 63 "base/test_switches.cc",
64 "base/test_switches.h", 64 "base/test_switches.h",
65 "base/testing_browser_process.cc", 65 "base/testing_browser_process.cc",
66 "base/testing_browser_process.h", 66 "base/testing_browser_process.h",
67 "base/testing_browser_process_platform_part.cc", 67 "base/testing_browser_process_platform_part.cc",
68 "base/testing_browser_process_platform_part.h", 68 "base/testing_browser_process_platform_part.h",
69 "base/testing_io_thread_state.cc", 69 "base/testing_io_thread_state.cc",
70 "base/testing_io_thread_state.h", 70 "base/testing_io_thread_state.h",
71 "base/testing_pref_service_syncable.cc",
72 "base/testing_pref_service_syncable.h",
73 "base/testing_profile.cc", 71 "base/testing_profile.cc",
74 "base/testing_profile.h", 72 "base/testing_profile.h",
75 "base/testing_profile_manager.cc", 73 "base/testing_profile_manager.cc",
76 "base/testing_profile_manager.h", 74 "base/testing_profile_manager.h",
77 "base/tracing.cc", 75 "base/tracing.cc",
78 "base/tracing.h", 76 "base/tracing.h",
79 "base/ui_test_utils.cc", 77 "base/ui_test_utils.cc",
80 "base/ui_test_utils.h", 78 "base/ui_test_utils.h",
81 "logging/win/file_logger.cc", 79 "logging/win/file_logger.cc",
82 "logging/win/file_logger.h", 80 "logging/win/file_logger.h",
(...skipping 29 matching lines...) Expand all
112 "//components/gcm_driver/instance_id:test_support", 110 "//components/gcm_driver/instance_id:test_support",
113 "//components/history/core/test:test", 111 "//components/history/core/test:test",
114 "//components/metrics:test_support", 112 "//components/metrics:test_support",
115 "//components/omnibox/browser:test_support", 113 "//components/omnibox/browser:test_support",
116 "//components/password_manager/core/browser:test_support", 114 "//components/password_manager/core/browser:test_support",
117 "//components/pref_registry:test_support", 115 "//components/pref_registry:test_support",
118 "//components/rappor:test_support", 116 "//components/rappor:test_support",
119 "//components/search_engines:test_support", 117 "//components/search_engines:test_support",
120 "//components/signin/core/browser:test_support", 118 "//components/signin/core/browser:test_support",
121 "//components/sync_driver:test_support", 119 "//components/sync_driver:test_support",
120 "//components/syncable_prefs:test_support",
122 "//components/update_client:test_support", 121 "//components/update_client:test_support",
123 "//content/public/app:both", 122 "//content/public/app:both",
124 "//ui/gfx:test_support", 123 "//ui/gfx:test_support",
125 "//net", 124 "//net",
126 "//net:test_support", 125 "//net:test_support",
127 "//skia", 126 "//skia",
128 "//sql", 127 "//sql",
129 "//sql:test_support", 128 "//sql:test_support",
130 "//sync", 129 "//sync",
131 "//testing/gmock", 130 "//testing/gmock",
(...skipping 1878 matching lines...) Expand 10 before | Expand all | Expand 10 after
2010 "//third_party/mojo/src/mojo/edk/system", 2009 "//third_party/mojo/src/mojo/edk/system",
2011 ] 2010 ]
2012 2011
2013 if (!is_android && use_ash) { 2012 if (!is_android && use_ash) {
2014 sources += rebase_path( 2013 sources += rebase_path(
2015 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, 2014 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources,
2016 ".", 2015 ".",
2017 "//chrome") 2016 "//chrome")
2018 } 2017 }
2019 } 2018 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/test/base/testing_pref_service_syncable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698