| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 "//ui/surface", | 620 "//ui/surface", |
| 621 "//ui/web_dialogs", | 621 "//ui/web_dialogs", |
| 622 "//v8:v8_version", | 622 "//v8:v8_version", |
| 623 ] | 623 ] |
| 624 allow_circular_includes_from = [] | 624 allow_circular_includes_from = [] |
| 625 | 625 |
| 626 if (enable_extensions) { | 626 if (enable_extensions) { |
| 627 deps += [ | 627 deps += [ |
| 628 "//components/drive", | 628 "//components/drive", |
| 629 "//extensions/browser", | 629 "//extensions/browser", |
| 630 "//extensions/strings", |
| 630 ] | 631 ] |
| 631 } | 632 } |
| 632 | 633 |
| 633 if (is_chromeos && use_cras) { | 634 if (is_chromeos && use_cras) { |
| 634 defines += [ "USE_CRAS" ] | 635 defines += [ "USE_CRAS" ] |
| 635 } | 636 } |
| 636 | 637 |
| 637 if (!is_android) { | 638 if (!is_android) { |
| 638 sources += [ | 639 sources += [ |
| 639 "apps/app_info_dialog.h", | 640 "apps/app_info_dialog.h", |
| (...skipping 2894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3534 "test/test_confirm_bubble_model.cc", | 3535 "test/test_confirm_bubble_model.cc", |
| 3535 "test/test_confirm_bubble_model.h", | 3536 "test/test_confirm_bubble_model.h", |
| 3536 ] | 3537 ] |
| 3537 deps += [ "//chrome/test:test_support_ui" ] | 3538 deps += [ "//chrome/test:test_support_ui" ] |
| 3538 } | 3539 } |
| 3539 | 3540 |
| 3540 if (enable_extensions) { | 3541 if (enable_extensions) { |
| 3541 deps += [ "//extensions/browser" ] | 3542 deps += [ "//extensions/browser" ] |
| 3542 } | 3543 } |
| 3543 } | 3544 } |
| OLD | NEW |