Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 2885523002: Remove non-Android handling in LargeIconSource (Closed)
Patch Set: Merge branch 'master' into searchbox2 Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/webui/browsing_history_handler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 "webui/gcm_internals_ui.cc", 357 "webui/gcm_internals_ui.cc",
358 "webui/gcm_internals_ui.h", 358 "webui/gcm_internals_ui.h",
359 "webui/instant_ui.cc", 359 "webui/instant_ui.cc",
360 "webui/instant_ui.h", 360 "webui/instant_ui.h",
361 "webui/interstitials/interstitial_ui.cc", 361 "webui/interstitials/interstitial_ui.cc",
362 "webui/interstitials/interstitial_ui.h", 362 "webui/interstitials/interstitial_ui.h",
363 "webui/invalidations_message_handler.cc", 363 "webui/invalidations_message_handler.cc",
364 "webui/invalidations_message_handler.h", 364 "webui/invalidations_message_handler.h",
365 "webui/invalidations_ui.cc", 365 "webui/invalidations_ui.cc",
366 "webui/invalidations_ui.h", 366 "webui/invalidations_ui.h",
367 "webui/large_icon_source.cc",
368 "webui/large_icon_source.h",
369 "webui/local_state/local_state_ui.cc", 367 "webui/local_state/local_state_ui.cc",
370 "webui/local_state/local_state_ui.h", 368 "webui/local_state/local_state_ui.h",
371 "webui/log_web_ui_url.cc", 369 "webui/log_web_ui_url.cc",
372 "webui/log_web_ui_url.h", 370 "webui/log_web_ui_url.h",
373 "webui/metrics_handler.cc", 371 "webui/metrics_handler.cc",
374 "webui/metrics_handler.h", 372 "webui/metrics_handler.h",
375 "webui/mojo_web_ui_controller.cc", 373 "webui/mojo_web_ui_controller.cc",
376 "webui/mojo_web_ui_controller.h", 374 "webui/mojo_web_ui_controller.h",
377 "webui/mojo_web_ui_handler.h", 375 "webui/mojo_web_ui_handler.h",
378 "webui/net_export_ui.cc", 376 "webui/net_export_ui.cc",
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 defines += [ "USE_CRAS" ] 645 defines += [ "USE_CRAS" ]
648 } 646 }
649 647
650 if (is_android || is_linux) { 648 if (is_android || is_linux) {
651 sources += [ 649 sources += [
652 "webui/sandbox_internals_ui.cc", 650 "webui/sandbox_internals_ui.cc",
653 "webui/sandbox_internals_ui.h", 651 "webui/sandbox_internals_ui.h",
654 ] 652 ]
655 } 653 }
656 654
655 if (is_android) {
656 sources += [
657 "webui/large_icon_source.cc",
658 "webui/large_icon_source.h",
659 ]
660 }
661
657 if (!is_android) { 662 if (!is_android) {
658 sources += [ 663 sources += [
dpapad 2017/05/16 17:15:13 Nit: Perhaps merge the previous condition with thi
659 "apps/app_info_dialog.h", 664 "apps/app_info_dialog.h",
660 "apps/chrome_app_delegate.cc", 665 "apps/chrome_app_delegate.cc",
661 "apps/chrome_app_delegate.h", 666 "apps/chrome_app_delegate.h",
662 "apps/chrome_app_window_client.cc", 667 "apps/chrome_app_window_client.cc",
663 "apps/chrome_app_window_client.h", 668 "apps/chrome_app_window_client.h",
664 "apps/directory_access_confirmation_dialog.cc", 669 "apps/directory_access_confirmation_dialog.cc",
665 "apps/directory_access_confirmation_dialog.h", 670 "apps/directory_access_confirmation_dialog.h",
666 "blocked_content/app_modal_dialog_helper.cc", 671 "blocked_content/app_modal_dialog_helper.cc",
667 "blocked_content/app_modal_dialog_helper.h", 672 "blocked_content/app_modal_dialog_helper.h",
668 "bluetooth/bluetooth_chooser_controller.cc", 673 "bluetooth/bluetooth_chooser_controller.cc",
(...skipping 2928 matching lines...) Expand 10 before | Expand all | Expand 10 after
3597 "test/test_confirm_bubble_model.cc", 3602 "test/test_confirm_bubble_model.cc",
3598 "test/test_confirm_bubble_model.h", 3603 "test/test_confirm_bubble_model.h",
3599 ] 3604 ]
3600 deps += [ "//chrome/test:test_support_ui" ] 3605 deps += [ "//chrome/test:test_support_ui" ]
3601 } 3606 }
3602 3607
3603 if (enable_extensions) { 3608 if (enable_extensions) {
3604 deps += [ "//extensions/browser" ] 3609 deps += [ "//extensions/browser" ]
3605 } 3610 }
3606 } 3611 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/webui/browsing_history_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698