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

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

Issue 2629573004: Add a chrome://webapks page. (Closed)
Patch Set: Adds an about:webapks page with information about all installed Web APKs on the device Created 3 years, 11 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 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 2252 matching lines...) Expand 10 before | Expand all | Expand 10 after
2263 "webui/offline/offline_internals_ui.cc", 2263 "webui/offline/offline_internals_ui.cc",
2264 "webui/offline/offline_internals_ui.h", 2264 "webui/offline/offline_internals_ui.h",
2265 "webui/offline/offline_internals_ui_message_handler.cc", 2265 "webui/offline/offline_internals_ui_message_handler.cc",
2266 "webui/offline/offline_internals_ui_message_handler.h", 2266 "webui/offline/offline_internals_ui_message_handler.h",
2267 "webui/popular_sites_internals_ui.cc", 2267 "webui/popular_sites_internals_ui.cc",
2268 "webui/popular_sites_internals_ui.h", 2268 "webui/popular_sites_internals_ui.h",
2269 "webui/snippets_internals_message_handler.cc", 2269 "webui/snippets_internals_message_handler.cc",
2270 "webui/snippets_internals_message_handler.h", 2270 "webui/snippets_internals_message_handler.h",
2271 "webui/snippets_internals_ui.cc", 2271 "webui/snippets_internals_ui.cc",
2272 "webui/snippets_internals_ui.h", 2272 "webui/snippets_internals_ui.h",
2273 "webui/webapks_handler.cc",
2274 "webui/webapks_handler.h",
2275 "webui/webapks_ui.cc",
2276 "webui/webapks_ui.h",
2273 ] 2277 ]
2274 if (enable_vr_shell || enable_webvr) { 2278 if (enable_vr_shell || enable_webvr) {
2275 if (enable_vr_shell) { 2279 if (enable_vr_shell) {
2276 defines += [ "ENABLE_VR_SHELL" ] 2280 defines += [ "ENABLE_VR_SHELL" ]
2277 } 2281 }
2278 sources += [ 2282 sources += [
2279 "webui/vr_shell/vr_shell_ui_message_handler.cc", 2283 "webui/vr_shell/vr_shell_ui_message_handler.cc",
2280 "webui/vr_shell/vr_shell_ui_message_handler.h", 2284 "webui/vr_shell/vr_shell_ui_message_handler.h",
2281 "webui/vr_shell/vr_shell_ui_ui.cc", 2285 "webui/vr_shell/vr_shell_ui_ui.cc",
2282 "webui/vr_shell/vr_shell_ui_ui.h", 2286 "webui/vr_shell/vr_shell_ui_ui.h",
(...skipping 1210 matching lines...) Expand 10 before | Expand all | Expand 10 after
3493 "test/test_confirm_bubble_model.cc", 3497 "test/test_confirm_bubble_model.cc",
3494 "test/test_confirm_bubble_model.h", 3498 "test/test_confirm_bubble_model.h",
3495 ] 3499 ]
3496 deps += [ "//chrome/test:test_support_ui" ] 3500 deps += [ "//chrome/test:test_support_ui" ]
3497 } 3501 }
3498 3502
3499 if (enable_extensions) { 3503 if (enable_extensions) {
3500 deps += [ "//extensions/browser" ] 3504 deps += [ "//extensions/browser" ]
3501 } 3505 }
3502 } 3506 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698