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

Side by Side Diff: ios/chrome/browser/BUILD.gn

Issue 2589843002: Upstream Chrome on iOS source code [11/11]. (Closed)
Patch Set: Created 4 years 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 | « ios/chrome/app/steps/BUILD.gn ('k') | ios/chrome/browser/autofill/BUILD.gn » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ios/rules.gni") 7 import("//build/config/ios/rules.gni")
8 import("//rlz/features/features.gni") 8 import("//rlz/features/features.gni")
9 import("//third_party/protobuf/proto_library.gni") 9 import("//third_party/protobuf/proto_library.gni")
10 10
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 "resources/Settings.bundle/Root.plist", 214 "resources/Settings.bundle/Root.plist",
215 ] 215 ]
216 outputs = [ 216 outputs = [
217 "{{bundle_resources_dir}}/Settings.bundle/{{source_file_part}}", 217 "{{bundle_resources_dir}}/Settings.bundle/{{source_file_part}}",
218 ] 218 ]
219 } 219 }
220 220
221 source_set("unit_tests") { 221 source_set("unit_tests") {
222 testonly = true 222 testonly = true
223 sources = [ 223 sources = [
224 "callback_counter_unittest.mm",
224 "chrome_url_util_unittest.mm", 225 "chrome_url_util_unittest.mm",
225 "crash_loop_detection_util_unittest.mm", 226 "crash_loop_detection_util_unittest.mm",
226 "install_time_util_unittest.mm", 227 "install_time_util_unittest.mm",
227 "installation_notifier_unittest.mm", 228 "installation_notifier_unittest.mm",
228 "ios_chrome_io_thread_unittest.mm", 229 "ios_chrome_io_thread_unittest.mm",
229 "notification_promo_unittest.cc", 230 "notification_promo_unittest.cc",
230 ] 231 ]
231 deps = [ 232 deps = [
232 ":browser", 233 ":browser",
234 ":browser_internal",
233 "//base", 235 "//base",
234 "//base/test:test_support", 236 "//base/test:test_support",
235 "//components/prefs", 237 "//components/prefs",
236 "//components/prefs:test_support", 238 "//components/prefs:test_support",
237 "//components/proxy_config", 239 "//components/proxy_config",
238 "//components/ssl_config", 240 "//components/ssl_config",
239 "//components/variations", 241 "//components/variations",
240 "//ios/web:test_support", 242 "//ios/web:test_support",
241 "//net", 243 "//net",
242 "//net:test_support", 244 "//net:test_support",
243 "//testing/gtest", 245 "//testing/gtest",
244 "//url", 246 "//url",
245 ] 247 ]
246 } 248 }
249
250 source_set("browser_internal") {
251 sources = [
252 "callback_counter.h",
253 "callback_counter.mm",
254 ]
255 deps = [
256 "//base",
257 ]
258 }
259
260 source_set("downstream_provider") {
261 sources = [
262 "downstream_chromium_browser_provider.h",
263 "downstream_chromium_browser_provider.mm",
264 ]
265 deps = [
266 "//base",
267 "//components/handoff",
268 "//components/pref_registry",
269 "//components/prefs",
270 "//ios/chrome/browser",
271 "//ios/chrome/browser/autofill:autofill_internal",
272 "//ios/chrome/browser/browser_state",
273 "//ios/chrome/browser/browser_state:browser_state_impl",
274 "//ios/chrome/browser/providers",
275 "//ios/chrome/browser/sessions:sessions_internal",
276 "//ios/chrome/browser/sync/glue",
277 "//ios/chrome/browser/sync/sessions",
278 "//ios/chrome/browser/tabs",
279 "//ios/chrome/browser/tabs:tabs_internal",
280 "//ios/chrome/browser/ui",
281 "//ios/chrome/browser/ui:browser_list",
282 "//ios/chrome/browser/ui/autofill:autofill_internal",
283 "//ios/chrome/browser/ui/bookmarks",
284 "//ios/chrome/browser/ui/infobars",
285 "//ios/chrome/browser/ui/webui:webui_internal",
286 "//ios/chrome/common",
287 ]
288 }
289
290 source_set("downstream_provider_factory") {
291 sources = [
292 "downstream_chromium_browser_provider_factory.mm",
293 ]
294 deps = [
295 ":downstream_provider",
296 "//base",
297 "//ios/public/provider/chrome/browser",
298 ]
299 }
300
301 # Clean Skeleton targets
302 source_set("browser_clean_skeleton") {
303 sources = [
304 "browser_coordinator+internal.h",
305 "browser_coordinator.h",
306 "browser_coordinator.mm",
307 "url_opening.h",
308 ]
309
310 configs += [ "//build/config/compiler:enable_arc" ]
311
312 deps = [
313 "//base",
314 "//ios/chrome/browser",
315 "//ios/chrome/browser/browser_state",
316 ]
317 }
OLDNEW
« no previous file with comments | « ios/chrome/app/steps/BUILD.gn ('k') | ios/chrome/browser/autofill/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698