| 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 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 638 defines += [ "USE_CRAS" ] | 638 defines += [ "USE_CRAS" ] |
| 639 } | 639 } |
| 640 | 640 |
| 641 if (is_android || is_linux) { | 641 if (is_android || is_linux) { |
| 642 sources += [ | 642 sources += [ |
| 643 "webui/sandbox_internals_ui.cc", | 643 "webui/sandbox_internals_ui.cc", |
| 644 "webui/sandbox_internals_ui.h", | 644 "webui/sandbox_internals_ui.h", |
| 645 ] | 645 ] |
| 646 } | 646 } |
| 647 | 647 |
| 648 if (is_android) { | 648 if (!is_android) { |
| 649 sources += [ | |
| 650 "webui/large_icon_source.cc", | |
| 651 "webui/large_icon_source.h", | |
| 652 ] | |
| 653 } else { | |
| 654 sources += [ | 649 sources += [ |
| 655 "apps/app_info_dialog.h", | 650 "apps/app_info_dialog.h", |
| 656 "apps/chrome_app_delegate.cc", | 651 "apps/chrome_app_delegate.cc", |
| 657 "apps/chrome_app_delegate.h", | 652 "apps/chrome_app_delegate.h", |
| 658 "apps/chrome_app_window_client.cc", | 653 "apps/chrome_app_window_client.cc", |
| 659 "apps/chrome_app_window_client.h", | 654 "apps/chrome_app_window_client.h", |
| 660 "apps/directory_access_confirmation_dialog.cc", | 655 "apps/directory_access_confirmation_dialog.cc", |
| 661 "apps/directory_access_confirmation_dialog.h", | 656 "apps/directory_access_confirmation_dialog.h", |
| 662 "blocked_content/app_modal_dialog_helper.cc", | 657 "blocked_content/app_modal_dialog_helper.cc", |
| 663 "blocked_content/app_modal_dialog_helper.h", | 658 "blocked_content/app_modal_dialog_helper.h", |
| (...skipping 2940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3604 deps += [ | 3599 deps += [ |
| 3605 "//chrome/test:test_support_ui", | 3600 "//chrome/test:test_support_ui", |
| 3606 "//components/zoom", | 3601 "//components/zoom", |
| 3607 ] | 3602 ] |
| 3608 } | 3603 } |
| 3609 | 3604 |
| 3610 if (enable_extensions) { | 3605 if (enable_extensions) { |
| 3611 deps += [ "//extensions/browser" ] | 3606 deps += [ "//extensions/browser" ] |
| 3612 } | 3607 } |
| 3613 } | 3608 } |
| OLD | NEW |