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

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
657 if (!is_android) { 655 if (is_android) {
656 sources += [
657 "webui/large_icon_source.cc",
658 "webui/large_icon_source.h",
659 ]
660 } else {
658 sources += [ 661 sources += [
659 "apps/app_info_dialog.h", 662 "apps/app_info_dialog.h",
660 "apps/chrome_app_delegate.cc", 663 "apps/chrome_app_delegate.cc",
661 "apps/chrome_app_delegate.h", 664 "apps/chrome_app_delegate.h",
662 "apps/chrome_app_window_client.cc", 665 "apps/chrome_app_window_client.cc",
663 "apps/chrome_app_window_client.h", 666 "apps/chrome_app_window_client.h",
664 "apps/directory_access_confirmation_dialog.cc", 667 "apps/directory_access_confirmation_dialog.cc",
665 "apps/directory_access_confirmation_dialog.h", 668 "apps/directory_access_confirmation_dialog.h",
666 "blocked_content/app_modal_dialog_helper.cc", 669 "blocked_content/app_modal_dialog_helper.cc",
667 "blocked_content/app_modal_dialog_helper.h", 670 "blocked_content/app_modal_dialog_helper.h",
(...skipping 2929 matching lines...) Expand 10 before | Expand all | Expand 10 after
3597 "test/test_confirm_bubble_model.cc", 3600 "test/test_confirm_bubble_model.cc",
3598 "test/test_confirm_bubble_model.h", 3601 "test/test_confirm_bubble_model.h",
3599 ] 3602 ]
3600 deps += [ "//chrome/test:test_support_ui" ] 3603 deps += [ "//chrome/test:test_support_ui" ]
3601 } 3604 }
3602 3605
3603 if (enable_extensions) { 3606 if (enable_extensions) {
3604 deps += [ "//extensions/browser" ] 3607 deps += [ "//extensions/browser" ]
3605 } 3608 }
3606 } 3609 }
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