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

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

Issue 2757933002: Allow building non-Android with enable_webvr (Closed)
Patch Set: Created 3 years, 9 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/about_flags.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 3520 matching lines...) Expand 10 before | Expand all | Expand 10 after
3531 } 3531 }
3532 3532
3533 if (!is_chrome_branded) { 3533 if (!is_chrome_branded) {
3534 sources += [ 3534 sources += [
3535 "search/local_files_ntp_source.cc", 3535 "search/local_files_ntp_source.cc",
3536 "search/local_files_ntp_source.h", 3536 "search/local_files_ntp_source.h",
3537 ] 3537 ]
3538 } 3538 }
3539 3539
3540 if (enable_webvr) { 3540 if (enable_webvr) {
3541 deps += [ "android/vr_shell:vr_common" ] 3541 if (is_android) {
3542 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] 3542 deps += [ "android/vr_shell:vr_common" ]
3543 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ]
3544 }
3543 } 3545 }
3544 3546
3545 if (is_mac) { 3547 if (is_mac) {
3546 deps += [ 3548 deps += [
3547 "//chrome/app_shim", 3549 "//chrome/app_shim",
3548 "//chrome/browser/apps/app_shim", 3550 "//chrome/browser/apps/app_shim",
3549 "//chrome/browser/ui/cocoa/notifications:common", 3551 "//chrome/browser/ui/cocoa/notifications:common",
3550 "//third_party/crashpad/crashpad/client:client", 3552 "//third_party/crashpad/crashpad/client:client",
3551 "//third_party/google_toolbox_for_mac", 3553 "//third_party/google_toolbox_for_mac",
3552 "//third_party/mozilla", 3554 "//third_party/mozilla",
(...skipping 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after
4568 "media/pepper_cdm_test_constants.cc", 4570 "media/pepper_cdm_test_constants.cc",
4569 "media/pepper_cdm_test_constants.h", 4571 "media/pepper_cdm_test_constants.h",
4570 ] 4572 ]
4571 } 4573 }
4572 } 4574 }
4573 4575
4574 service_manifest("preferences_manifest") { 4576 service_manifest("preferences_manifest") {
4575 name = "preferences" 4577 name = "preferences"
4576 source = "prefs/preferences_manifest.json" 4578 source = "prefs/preferences_manifest.json"
4577 } 4579 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/about_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698