OLD | NEW |
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 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 "//components/data_usage/android", | 755 "//components/data_usage/android", |
756 "//components/precache/content", | 756 "//components/precache/content", |
757 "//components/precache/core", | 757 "//components/precache/core", |
758 "//components/resources:components_resources", | 758 "//components/resources:components_resources", |
759 "//components/toolbar", | 759 "//components/toolbar", |
760 "//components/web_contents_delegate_android", | 760 "//components/web_contents_delegate_android", |
761 "//third_party/smhasher:murmurhash2", | 761 "//third_party/smhasher:murmurhash2", |
762 ] | 762 ] |
763 } | 763 } |
764 | 764 |
| 765 if (enable_vr_shell) { |
| 766 deps += [ "android/vr_shell:vr_shell" ] |
| 767 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] |
| 768 } |
| 769 |
765 if (is_android) { | 770 if (is_android) { |
766 deps += [ | 771 deps += [ |
767 "//components/cdm/browser", | 772 "//components/cdm/browser", |
768 "//components/resources:components_resources", | 773 "//components/resources:components_resources", |
769 "//third_party/android_opengl/etc1", | 774 "//third_party/android_opengl/etc1", |
770 "//third_party/android_tools:cpu_features", | 775 "//third_party/android_tools:cpu_features", |
771 "//third_party/libaddressinput:util", | 776 "//third_party/libaddressinput:util", |
772 ] | 777 ] |
773 | 778 |
774 deps -= [ | 779 deps -= [ |
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1355 # linking all of the test support. | 1360 # linking all of the test support. |
1356 static_library("pepper_cdm_test_constants") { | 1361 static_library("pepper_cdm_test_constants") { |
1357 testonly = true | 1362 testonly = true |
1358 visibility = [ "//chrome/*" ] | 1363 visibility = [ "//chrome/*" ] |
1359 sources = [ | 1364 sources = [ |
1360 "media/pepper_cdm_test_constants.cc", | 1365 "media/pepper_cdm_test_constants.cc", |
1361 "media/pepper_cdm_test_constants.h", | 1366 "media/pepper_cdm_test_constants.h", |
1362 ] | 1367 ] |
1363 } | 1368 } |
1364 } | 1369 } |
OLD | NEW |