| OLD | NEW |
| 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 import("//chrome/common/features.gni") | 8 import("//chrome/common/features.gni") |
| 9 | 9 |
| 10 gypi_values = exec_script("//build/gypi_to_gn.py", | 10 gypi_values = exec_script("//build/gypi_to_gn.py", |
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 518 sources += rebase_path(gypi_values.chrome_browser_ui_chromeos_arc_sources, | 518 sources += rebase_path(gypi_values.chrome_browser_ui_chromeos_arc_sources, |
| 519 ".", | 519 ".", |
| 520 "//chrome") | 520 "//chrome") |
| 521 } | 521 } |
| 522 deps += [ "//ui/app_list" ] | 522 deps += [ "//ui/app_list" ] |
| 523 } else { | 523 } else { |
| 524 sources += rebase_path(gypi_values.chrome_browser_ui_non_app_list_sources, | 524 sources += rebase_path(gypi_values.chrome_browser_ui_non_app_list_sources, |
| 525 ".", | 525 ".", |
| 526 "//chrome") | 526 "//chrome") |
| 527 } | 527 } |
| 528 if (enable_autofill_dialog) { | 528 if (!android_java_ui && !is_ios) { |
| 529 sources += | 529 deps += [ |
| 530 rebase_path(gypi_values.chrome_browser_ui_autofill_dialog_sources, | 530 "//third_party/libaddressinput", |
| 531 ".", | 531 "//third_party/libaddressinput:strings", |
| 532 "//chrome") | 532 ] |
| 533 if (!android_java_ui && !is_ios) { | |
| 534 sources += rebase_path( | |
| 535 gypi_values.chrome_browser_ui_autofill_dialog_non_mobile_sources, | |
| 536 ".", | |
| 537 "//chrome") | |
| 538 deps += [ | |
| 539 "//third_party/libaddressinput", | |
| 540 "//third_party/libaddressinput:strings", | |
| 541 ] | |
| 542 } | |
| 543 } | 533 } |
| 544 if (enable_extensions) { | 534 if (enable_extensions) { |
| 545 deps += [ | 535 deps += [ |
| 546 "//chrome/browser/extensions", | 536 "//chrome/browser/extensions", |
| 547 "//chrome/common/extensions/api", | 537 "//chrome/common/extensions/api", |
| 548 "//chrome/common/extensions/api:api_registration", | 538 "//chrome/common/extensions/api:api_registration", |
| 549 ] | 539 ] |
| 550 sources += rebase_path(gypi_values.chrome_browser_ui_extensions_sources, | 540 sources += rebase_path(gypi_values.chrome_browser_ui_extensions_sources, |
| 551 ".", | 541 ".", |
| 552 "//chrome") | 542 "//chrome") |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 671 "//chrome/browser", | 661 "//chrome/browser", |
| 672 "//content/public/browser", | 662 "//content/public/browser", |
| 673 "//content/public/common", | 663 "//content/public/common", |
| 674 "//content/test:test_support", | 664 "//content/test:test_support", |
| 675 "//net:test_support", | 665 "//net:test_support", |
| 676 "//skia", | 666 "//skia", |
| 677 "//testing/gtest", | 667 "//testing/gtest", |
| 678 "//ui/base", | 668 "//ui/base", |
| 679 ] | 669 ] |
| 680 } | 670 } |
| OLD | NEW |