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

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

Issue 2252103002: Introduce ChromeVR to Chrome on Android (behind a build flag) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/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 737 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 "//components/data_usage/android", 748 "//components/data_usage/android",
749 "//components/precache/content", 749 "//components/precache/content",
750 "//components/precache/core", 750 "//components/precache/core",
751 "//components/resources:components_resources", 751 "//components/resources:components_resources",
752 "//components/toolbar", 752 "//components/toolbar",
753 "//components/web_contents_delegate_android", 753 "//components/web_contents_delegate_android",
754 "//third_party/smhasher:murmurhash2", 754 "//third_party/smhasher:murmurhash2",
755 ] 755 ]
756 } 756 }
757 757
758 if (enable_vr_shell) {
759 deps += [ "android/vr_shell:vr_shell" ]
760 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ]
761 }
762
758 if (is_android) { 763 if (is_android) {
759 deps += [ 764 deps += [
760 "//components/cdm/browser", 765 "//components/cdm/browser",
761 "//components/resources:components_resources", 766 "//components/resources:components_resources",
762 "//third_party/android_opengl/etc1", 767 "//third_party/android_opengl/etc1",
763 "//third_party/android_tools:cpu_features", 768 "//third_party/android_tools:cpu_features",
764 "//third_party/libaddressinput:util", 769 "//third_party/libaddressinput:util",
765 ] 770 ]
766 771
767 deps -= [ 772 deps -= [
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
1347 # linking all of the test support. 1352 # linking all of the test support.
1348 static_library("pepper_cdm_test_constants") { 1353 static_library("pepper_cdm_test_constants") {
1349 testonly = true 1354 testonly = true
1350 visibility = [ "//chrome/*" ] 1355 visibility = [ "//chrome/*" ]
1351 sources = [ 1356 sources = [
1352 "media/pepper_cdm_test_constants.cc", 1357 "media/pepper_cdm_test_constants.cc",
1353 "media/pepper_cdm_test_constants.h", 1358 "media/pepper_cdm_test_constants.h",
1354 ] 1359 ]
1355 } 1360 }
1356 } 1361 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698