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

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

Issue 2341803003: Add chrome://vr-shell-ui internal page (Closed)
Patch Set: More clean up Created 4 years, 3 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/split_static_library.gni") 8 import("//build/split_static_library.gni")
9 import("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 2160 matching lines...) Expand 10 before | Expand all | Expand 10 after
2171 "webui/offline/offline_internals_ui_message_handler.h", 2171 "webui/offline/offline_internals_ui_message_handler.h",
2172 "webui/popular_sites_internals_message_handler.cc", 2172 "webui/popular_sites_internals_message_handler.cc",
2173 "webui/popular_sites_internals_message_handler.h", 2173 "webui/popular_sites_internals_message_handler.h",
2174 "webui/popular_sites_internals_ui.cc", 2174 "webui/popular_sites_internals_ui.cc",
2175 "webui/popular_sites_internals_ui.h", 2175 "webui/popular_sites_internals_ui.h",
2176 "webui/snippets_internals_message_handler.cc", 2176 "webui/snippets_internals_message_handler.cc",
2177 "webui/snippets_internals_message_handler.h", 2177 "webui/snippets_internals_message_handler.h",
2178 "webui/snippets_internals_ui.cc", 2178 "webui/snippets_internals_ui.cc",
2179 "webui/snippets_internals_ui.h", 2179 "webui/snippets_internals_ui.h",
2180 ] 2180 ]
2181 if (enable_vr_shell) {
2182 defines += [ "ENABLE_VR_SHELL" ]
2183 sources += [
2184 "webui/vr_shell/vr_shell_ui_message_handler.cc",
2185 "webui/vr_shell/vr_shell_ui_message_handler.h",
2186 "webui/vr_shell/vr_shell_ui_ui.cc",
2187 "webui/vr_shell/vr_shell_ui_ui.h",
2188 ]
2189 }
2190 if (enable_vr_shell_ui_dev) {
2191 assert(enable_vr_shell)
2192 defines += [ "ENABLE_VR_SHELL_UI_DEV" ]
2193 }
2181 deps += [ 2194 deps += [
2182 "//chrome/browser:jni_headers", 2195 "//chrome/browser:jni_headers",
2183 "//components/web_contents_delegate_android", 2196 "//components/web_contents_delegate_android",
2184 ] 2197 ]
2185 deps -= [ "//ui/events" ] 2198 deps -= [ "//ui/events" ]
2186 } 2199 }
2187 } else { 2200 } else {
2188 sources += [ "browser_window.h" ] 2201 sources += [ "browser_window.h" ]
2189 } 2202 }
2190 2203
(...skipping 1175 matching lines...) Expand 10 before | Expand all | Expand 10 after
3366 "passwords/passwords_model_delegate_mock.cc", 3379 "passwords/passwords_model_delegate_mock.cc",
3367 "passwords/passwords_model_delegate_mock.h", 3380 "passwords/passwords_model_delegate_mock.h",
3368 ] 3381 ]
3369 deps += [ "//chrome/test:test_support_ui" ] 3382 deps += [ "//chrome/test:test_support_ui" ]
3370 } 3383 }
3371 3384
3372 if (enable_extensions) { 3385 if (enable_extensions) {
3373 deps += [ "//extensions/browser" ] 3386 deps += [ "//extensions/browser" ]
3374 } 3387 }
3375 } 3388 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698