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

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

Issue 974323002: Componentize autofill dialog common code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 8
9 gypi_values = exec_script("//build/gypi_to_gn.py", 9 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("../../chrome_browser_ui.gypi") ], 10 [ rebase_path("../../chrome_browser_ui.gypi") ],
(...skipping 28 matching lines...) Expand all
39 "//chrome:extra_resources", 39 "//chrome:extra_resources",
40 "//chrome:resources", 40 "//chrome:resources",
41 "//chrome:strings", 41 "//chrome:strings",
42 "//chrome/app/resources:platform_locale_settings", 42 "//chrome/app/resources:platform_locale_settings",
43 "//chrome/app/theme:theme_resources", 43 "//chrome/app/theme:theme_resources",
44 "//chrome/browser/net:cert_logger_proto", 44 "//chrome/browser/net:cert_logger_proto",
45 "//chrome/common", 45 "//chrome/common",
46 "//chrome/common/net", 46 "//chrome/common/net",
47 "//components/app_modal", 47 "//components/app_modal",
48 "//components/auto_login_parser", 48 "//components/auto_login_parser",
49 "//components/autofill/core/browser",
49 "//components/dom_distiller/webui", 50 "//components/dom_distiller/webui",
50 "//components/feedback/proto", 51 "//components/feedback/proto",
51 "//components/history/core/browser:proto", 52 "//components/history/core/browser:proto",
52 "//components/invalidation", 53 "//components/invalidation",
53 "//components/onc", 54 "//components/onc",
54 "//components/password_manager/core/browser", 55 "//components/password_manager/core/browser",
55 "//components/resources", 56 "//components/resources",
56 "//components/strings", 57 "//components/strings",
57 "//components/update_client", 58 "//components/update_client",
58 "//content/public/browser", 59 "//content/public/browser",
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 if (enable_app_list) { 414 if (enable_app_list) {
414 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources, 415 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources,
415 ".", 416 ".",
416 "//chrome") 417 "//chrome")
417 deps += [ "//ui/app_list" ] 418 deps += [ "//ui/app_list" ]
418 } else { 419 } else {
419 sources += rebase_path(gypi_values.chrome_browser_ui_non_app_list_sources, 420 sources += rebase_path(gypi_values.chrome_browser_ui_non_app_list_sources,
420 ".", 421 ".",
421 "//chrome") 422 "//chrome")
422 } 423 }
423 if (enable_autofill_dialog) { 424 if (enable_autofill_dialog && !is_android && !is_ios) {
424 sources += 425 sources += rebase_path(
425 rebase_path(gypi_values.chrome_browser_ui_autofill_dialog_sources, 426 gypi_values.chrome_browser_ui_autofill_dialog_non_mobile_sources,
426 ".", 427 ".",
427 "//chrome") 428 "//chrome")
428 if (!is_android && !is_ios) { 429 deps += [
429 sources += rebase_path( 430 "//third_party/libaddressinput",
430 gypi_values.chrome_browser_ui_autofill_dialog_non_mobile_sources, 431 "//third_party/libaddressinput:strings",
431 ".", 432 ]
432 "//chrome")
433 deps += [
434 "//third_party/libaddressinput",
435 "//third_party/libaddressinput:strings",
436 ]
437 }
438 } 433 }
439 if (enable_extensions) { 434 if (enable_extensions) {
440 deps += [ 435 deps += [
441 "//chrome/browser/extensions", 436 "//chrome/browser/extensions",
442 "//chrome/common/extensions/api", 437 "//chrome/common/extensions/api",
443 "//chrome/common/extensions/api:api_registration", 438 "//chrome/common/extensions/api:api_registration",
444 ] 439 ]
445 sources += rebase_path(gypi_values.chrome_browser_ui_extensions_sources, 440 sources += rebase_path(gypi_values.chrome_browser_ui_extensions_sources,
446 ".", 441 ".",
447 "//chrome") 442 "//chrome")
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 "//chrome/browser", 524 "//chrome/browser",
530 "//content/public/browser", 525 "//content/public/browser",
531 "//content/public/common", 526 "//content/public/common",
532 "//content/test:test_support", 527 "//content/test:test_support",
533 "//net:test_support", 528 "//net:test_support",
534 "//skia", 529 "//skia",
535 "//testing/gtest", 530 "//testing/gtest",
536 "//ui/base", 531 "//ui/base",
537 ] 532 ]
538 } 533 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698