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

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

Issue 2975593002: [vr] Deny permission requests in VR mode
Patch Set: . Created 3 years, 5 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/android/download/download_controller.cc » ('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/chrome_build.gni") 5 import("//build/config/chrome_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 1383 matching lines...) Expand 10 before | Expand all | Expand 10 after
1394 "usb/usb_chooser_context.cc", 1394 "usb/usb_chooser_context.cc",
1395 "usb/usb_chooser_context.h", 1395 "usb/usb_chooser_context.h",
1396 "usb/usb_chooser_context_factory.cc", 1396 "usb/usb_chooser_context_factory.cc",
1397 "usb/usb_chooser_context_factory.h", 1397 "usb/usb_chooser_context_factory.h",
1398 "usb/usb_tab_helper.cc", 1398 "usb/usb_tab_helper.cc",
1399 "usb/usb_tab_helper.h", 1399 "usb/usb_tab_helper.h",
1400 "usb/web_usb_histograms.cc", 1400 "usb/web_usb_histograms.cc",
1401 "usb/web_usb_histograms.h", 1401 "usb/web_usb_histograms.h",
1402 "usb/web_usb_permission_provider.cc", 1402 "usb/web_usb_permission_provider.cc",
1403 "usb/web_usb_permission_provider.h", 1403 "usb/web_usb_permission_provider.h",
1404 "vr/vr_tab_helper.cc",
1405 "vr/vr_tab_helper.h",
1404 "web_data_service_factory.cc", 1406 "web_data_service_factory.cc",
1405 "web_data_service_factory.h", 1407 "web_data_service_factory.h",
1406 "webshare/share_target_pref_helper.cc", 1408 "webshare/share_target_pref_helper.cc",
1407 "webshare/share_target_pref_helper.h", 1409 "webshare/share_target_pref_helper.h",
1408 "webshare/webshare_target.cc", 1410 "webshare/webshare_target.cc",
1409 "webshare/webshare_target.h", 1411 "webshare/webshare_target.h",
1410 "win/app_icon.cc", 1412 "win/app_icon.cc",
1411 "win/app_icon.h", 1413 "win/app_icon.h",
1412 "win/browser_util.cc", 1414 "win/browser_util.cc",
1413 "win/browser_util.h", 1415 "win/browser_util.h",
(...skipping 2125 matching lines...) Expand 10 before | Expand all | Expand 10 after
3539 3541
3540 if (!is_chrome_branded) { 3542 if (!is_chrome_branded) {
3541 sources += [ 3543 sources += [
3542 "search/local_files_ntp_source.cc", 3544 "search/local_files_ntp_source.cc",
3543 "search/local_files_ntp_source.h", 3545 "search/local_files_ntp_source.h",
3544 ] 3546 ]
3545 } 3547 }
3546 3548
3547 if (enable_vr) { 3549 if (enable_vr) {
3548 if (is_android) { 3550 if (is_android) {
3549 sources += [
3550 "android/vr_shell/vr_tab_helper.cc",
3551 "android/vr_shell/vr_tab_helper.h",
3552 ]
3553 deps += [ "android/vr_shell:vr_android" ] 3551 deps += [ "android/vr_shell:vr_android" ]
3554 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] 3552 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ]
3555 } 3553 }
3556 } 3554 }
3557 3555
3558 if (is_mac) { 3556 if (is_mac) {
3559 deps += [ 3557 deps += [
3560 "//chrome/app_shim", 3558 "//chrome/app_shim",
3561 "//chrome/browser/apps/app_shim", 3559 "//chrome/browser/apps/app_shim",
3562 "//chrome/browser/ui/cocoa/notifications:common", 3560 "//chrome/browser/ui/cocoa/notifications:common",
(...skipping 1051 matching lines...) Expand 10 before | Expand all | Expand 10 after
4614 "//components/search_engines", 4612 "//components/search_engines",
4615 "//rlz:rlz_lib", 4613 "//rlz:rlz_lib",
4616 ] 4614 ]
4617 } 4615 }
4618 } 4616 }
4619 4617
4620 service_manifest("preferences_forwarder_manifest") { 4618 service_manifest("preferences_forwarder_manifest") {
4621 name = "preferences_forwarder" 4619 name = "preferences_forwarder"
4622 source = "prefs/forwarder_manifest.json" 4620 source = "prefs/forwarder_manifest.json"
4623 } 4621 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/android/download/download_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698