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

Side by Side Diff: ash/BUILD.gn

Issue 2538113005: mash: Move session_types.h to ash/public (Closed)
Patch Set: fix gn deps Created 4 years 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 | ash/common/media_delegate.h » ('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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//ui/base/ui_features.gni") 8 import("//ui/base/ui_features.gni")
9 9
10 assert(use_aura) 10 assert(use_aura)
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 "common/new_window_client_proxy.h", 128 "common/new_window_client_proxy.h",
129 "common/palette_delegate.h", 129 "common/palette_delegate.h",
130 "common/popup_message.cc", 130 "common/popup_message.cc",
131 "common/popup_message.h", 131 "common/popup_message.h",
132 "common/scoped_root_window_for_new_windows.cc", 132 "common/scoped_root_window_for_new_windows.cc",
133 "common/scoped_root_window_for_new_windows.h", 133 "common/scoped_root_window_for_new_windows.h",
134 "common/session/session_state_delegate.cc", 134 "common/session/session_state_delegate.cc",
135 "common/session/session_state_delegate.h", 135 "common/session/session_state_delegate.h",
136 "common/session/session_state_observer.cc", 136 "common/session/session_state_observer.cc",
137 "common/session/session_state_observer.h", 137 "common/session/session_state_observer.h",
138 "common/session/session_types.h",
139 "common/shelf/app_list_button.cc", 138 "common/shelf/app_list_button.cc",
140 "common/shelf/app_list_button.h", 139 "common/shelf/app_list_button.h",
141 "common/shelf/app_list_shelf_item_delegate.cc", 140 "common/shelf/app_list_shelf_item_delegate.cc",
142 "common/shelf/app_list_shelf_item_delegate.h", 141 "common/shelf/app_list_shelf_item_delegate.h",
143 "common/shelf/ink_drop_button_listener.h", 142 "common/shelf/ink_drop_button_listener.h",
144 "common/shelf/overflow_bubble.cc", 143 "common/shelf/overflow_bubble.cc",
145 "common/shelf/overflow_bubble.h", 144 "common/shelf/overflow_bubble.h",
146 "common/shelf/overflow_bubble_view.cc", 145 "common/shelf/overflow_bubble_view.cc",
147 "common/shelf/overflow_bubble_view.h", 146 "common/shelf/overflow_bubble_view.h",
148 "common/shelf/overflow_button.cc", 147 "common/shelf/overflow_button.cc",
(...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after
1015 "content/shell_content_state.cc", 1014 "content/shell_content_state.cc",
1016 "content/shell_content_state.h", 1015 "content/shell_content_state.h",
1017 ] 1016 ]
1018 1017
1019 defines = [ "ASH_WITH_CONTENT_IMPLEMENTATION" ] 1018 defines = [ "ASH_WITH_CONTENT_IMPLEMENTATION" ]
1020 1019
1021 public_deps = [ 1020 public_deps = [
1022 ":ash", 1021 ":ash",
1023 ] 1022 ]
1024 deps = [ 1023 deps = [
1024 "//ash/public/cpp",
1025 "//base", 1025 "//base",
1026 "//base/third_party/dynamic_annotations", 1026 "//base/third_party/dynamic_annotations",
1027 "//content/public/browser", 1027 "//content/public/browser",
1028 "//gpu/config", 1028 "//gpu/config",
1029 "//ipc", 1029 "//ipc",
1030 "//skia", 1030 "//skia",
1031 "//ui/aura", 1031 "//ui/aura",
1032 "//ui/base", 1032 "//ui/base",
1033 "//ui/compositor", 1033 "//ui/compositor",
1034 "//ui/events", 1034 "//ui/events",
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
1505 if (is_win) { 1505 if (is_win) {
1506 configs -= [ "//build/config/win:console" ] 1506 configs -= [ "//build/config/win:console" ]
1507 configs += [ "//build/config/win:windowed" ] 1507 configs += [ "//build/config/win:windowed" ]
1508 deps += [ "//sandbox" ] 1508 deps += [ "//sandbox" ]
1509 } 1509 }
1510 1510
1511 if (is_chromeos) { 1511 if (is_chromeos) {
1512 deps += [ "//device/bluetooth" ] 1512 deps += [ "//device/bluetooth" ]
1513 } 1513 }
1514 } 1514 }
OLDNEW
« no previous file with comments | « no previous file | ash/common/media_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698