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

Side by Side Diff: BUILD.gn

Issue 2364173002: Add app_list_presenterr pointer in app_list_presenter_delegate_mus to use dismiss function (Closed)
Patch Set: remove illegal include Created 4 years, 2 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 if (!is_android && !is_ios) { 714 if (!is_android && !is_ios) {
715 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ] 715 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ]
716 } 716 }
717 717
718 if (!is_android && !is_ios && !is_chromeos) { 718 if (!is_android && !is_ios && !is_chromeos) {
719 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] 719 deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
720 } 720 }
721 721
722 if (is_win || is_linux) { 722 if (is_win || is_linux) {
723 deps += [ 723 deps += [
724 "//chrome/browser/ui/ash/app_list:test_views_mus_unittests",
724 "//mash:all", 725 "//mash:all",
725 "//media/mojo/services:media_mojo_shell_unittests", 726 "//media/mojo/services:media_mojo_shell_unittests",
726 "//mojo", 727 "//mojo",
727 "//services/navigation", 728 "//services/navigation",
728 "//services/ui/demo", 729 "//services/ui/demo",
729 "//services/ui/ws:tests", 730 "//services/ui/ws:tests",
730 "//ui/views/mus:views_mus_interactive_ui_tests", 731 "//ui/views/mus:views_mus_interactive_ui_tests",
731 "//ui/views/mus:views_mus_unittests", 732 "//ui/views/mus:views_mus_unittests",
732 ] 733 ]
733 } 734 }
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
1130 "//ui/display:display_unittests", 1131 "//ui/display:display_unittests",
1131 "//ui/events:events_unittests", 1132 "//ui/events:events_unittests",
1132 "//ui/gfx:gfx_unittests", 1133 "//ui/gfx:gfx_unittests",
1133 "//ui/gl:gl_unittests", 1134 "//ui/gl:gl_unittests",
1134 "//ui/keyboard:keyboard_unittests", 1135 "//ui/keyboard:keyboard_unittests",
1135 "//ui/touch_selection:ui_touch_selection_unittests", 1136 "//ui/touch_selection:ui_touch_selection_unittests",
1136 "//url:url_unittests", 1137 "//url:url_unittests",
1137 ] 1138 ]
1138 } 1139 }
1139 } 1140 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698