| 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 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 649 | 649 |
| 650 if (is_android || is_linux) { | 650 if (is_android || is_linux) { |
| 651 sources += [ | 651 sources += [ |
| 652 "webui/sandbox_internals_ui.cc", | 652 "webui/sandbox_internals_ui.cc", |
| 653 "webui/sandbox_internals_ui.h", | 653 "webui/sandbox_internals_ui.h", |
| 654 ] | 654 ] |
| 655 } | 655 } |
| 656 | 656 |
| 657 if (!is_android) { | 657 if (!is_android) { |
| 658 sources += [ | 658 sources += [ |
| 659 "../metrics/browser_view_histogram_helper.cc", |
| 660 "../metrics/browser_view_histogram_helper.h", |
| 659 "apps/app_info_dialog.h", | 661 "apps/app_info_dialog.h", |
| 660 "apps/chrome_app_delegate.cc", | 662 "apps/chrome_app_delegate.cc", |
| 661 "apps/chrome_app_delegate.h", | 663 "apps/chrome_app_delegate.h", |
| 662 "apps/chrome_app_window_client.cc", | 664 "apps/chrome_app_window_client.cc", |
| 663 "apps/chrome_app_window_client.h", | 665 "apps/chrome_app_window_client.h", |
| 664 "apps/directory_access_confirmation_dialog.cc", | 666 "apps/directory_access_confirmation_dialog.cc", |
| 665 "apps/directory_access_confirmation_dialog.h", | 667 "apps/directory_access_confirmation_dialog.h", |
| 666 "blocked_content/app_modal_dialog_helper.cc", | 668 "blocked_content/app_modal_dialog_helper.cc", |
| 667 "blocked_content/app_modal_dialog_helper.h", | 669 "blocked_content/app_modal_dialog_helper.h", |
| 668 "bluetooth/bluetooth_chooser_controller.cc", | 670 "bluetooth/bluetooth_chooser_controller.cc", |
| (...skipping 2913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3582 "test/test_confirm_bubble_model.cc", | 3584 "test/test_confirm_bubble_model.cc", |
| 3583 "test/test_confirm_bubble_model.h", | 3585 "test/test_confirm_bubble_model.h", |
| 3584 ] | 3586 ] |
| 3585 deps += [ "//chrome/test:test_support_ui" ] | 3587 deps += [ "//chrome/test:test_support_ui" ] |
| 3586 } | 3588 } |
| 3587 | 3589 |
| 3588 if (enable_extensions) { | 3590 if (enable_extensions) { |
| 3589 deps += [ "//extensions/browser" ] | 3591 deps += [ "//extensions/browser" ] |
| 3590 } | 3592 } |
| 3591 } | 3593 } |
| OLD | NEW |