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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 } | 449 } |
450 | 450 |
451 if (use_udev) { | 451 if (use_udev) { |
452 deps += [ "//device/udev_linux" ] | 452 deps += [ "//device/udev_linux" ] |
453 } | 453 } |
454 | 454 |
455 if (enable_app_list) { | 455 if (enable_app_list) { |
456 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources, | 456 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources, |
457 ".", | 457 ".", |
458 "//chrome") | 458 "//chrome") |
| 459 if (is_chromeos) { |
| 460 sources += rebase_path(gypi_values.chrome_browser_ui_chromeos_arc_sources, |
| 461 ".", |
| 462 "//chrome") |
| 463 } |
459 deps += [ "//ui/app_list" ] | 464 deps += [ "//ui/app_list" ] |
460 } else { | 465 } else { |
461 sources += rebase_path(gypi_values.chrome_browser_ui_non_app_list_sources, | 466 sources += rebase_path(gypi_values.chrome_browser_ui_non_app_list_sources, |
462 ".", | 467 ".", |
463 "//chrome") | 468 "//chrome") |
464 } | 469 } |
465 if (enable_autofill_dialog) { | 470 if (enable_autofill_dialog) { |
466 sources += | 471 sources += |
467 rebase_path(gypi_values.chrome_browser_ui_autofill_dialog_sources, | 472 rebase_path(gypi_values.chrome_browser_ui_autofill_dialog_sources, |
468 ".", | 473 ".", |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
603 "//chrome/browser", | 608 "//chrome/browser", |
604 "//content/public/browser", | 609 "//content/public/browser", |
605 "//content/public/common", | 610 "//content/public/common", |
606 "//content/test:test_support", | 611 "//content/test:test_support", |
607 "//net:test_support", | 612 "//net:test_support", |
608 "//skia", | 613 "//skia", |
609 "//testing/gtest", | 614 "//testing/gtest", |
610 "//ui/base", | 615 "//ui/base", |
611 ] | 616 ] |
612 } | 617 } |
OLD | NEW |