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

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

Issue 2890983003: Remove AshPanelContents (Closed)
Patch Set: fix errors 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/extensions/api/tabs/ash_panel_contents.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("//chrome/common/features.gni") 7 import("//chrome/common/features.gni")
8 import("//extensions/features/features.gni") 8 import("//extensions/features/features.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 import("//rlz/features/features.gni") 10 import("//rlz/features/features.gni")
(...skipping 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after
1144 } else { 1144 } else {
1145 sources += 1145 sources +=
1146 [ "api/webrtc_logging_private/webrtc_logging_private_api_stub.cc" ] 1146 [ "api/webrtc_logging_private/webrtc_logging_private_api_stub.cc" ]
1147 } 1147 }
1148 1148
1149 if (toolkit_views) { 1149 if (toolkit_views) {
1150 deps += [ "//ui/views" ] 1150 deps += [ "//ui/views" ]
1151 } 1151 }
1152 1152
1153 if (use_ash) { 1153 if (use_ash) {
1154 sources += [
1155 "api/tabs/ash_panel_contents.cc",
1156 "api/tabs/ash_panel_contents.h",
1157 ]
1158 deps += [ 1154 deps += [
1159 "//ash", 1155 "//ash",
1160 "//ash/public/cpp:ash_public_cpp", 1156 "//ash/public/cpp:ash_public_cpp",
1161 ] 1157 ]
1162 } 1158 }
1163 1159
1164 if (use_aura) { 1160 if (use_aura) {
1165 deps += [ 1161 deps += [
1166 "//ui/aura", 1162 "//ui/aura",
1167 "//ui/keyboard", 1163 "//ui/keyboard",
1168 "//ui/keyboard:keyboard_with_content", 1164 "//ui/keyboard:keyboard_with_content",
1169 "//ui/keyboard:resources", 1165 "//ui/keyboard:resources",
1170 ] 1166 ]
1171 } 1167 }
1172 1168
1173 if (use_brlapi) { 1169 if (use_brlapi) {
1174 sources += [ 1170 sources += [
1175 "api/braille_display_private/braille_controller_brlapi.cc", 1171 "api/braille_display_private/braille_controller_brlapi.cc",
1176 "api/braille_display_private/brlapi_connection.cc", 1172 "api/braille_display_private/brlapi_connection.cc",
1177 "api/braille_display_private/brlapi_connection.h", 1173 "api/braille_display_private/brlapi_connection.h",
1178 "api/braille_display_private/brlapi_keycode_map.cc", 1174 "api/braille_display_private/brlapi_keycode_map.cc",
1179 "api/braille_display_private/brlapi_keycode_map.h", 1175 "api/braille_display_private/brlapi_keycode_map.h",
1180 ] 1176 ]
1181 deps += [ "//build/linux/libbrlapi" ] 1177 deps += [ "//build/linux/libbrlapi" ]
1182 } else { 1178 } else {
1183 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] 1179 sources += [ "api/braille_display_private/braille_controller_stub.cc" ]
1184 } 1180 }
1185 } 1181 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/api/tabs/ash_panel_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698