Chromium Code Reviews| 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 3331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3342 if (enable_supervised_users) { | 3342 if (enable_supervised_users) { |
| 3343 sources += [ | 3343 sources += [ |
| 3344 "supervised_user/child_accounts/child_account_feedback_reporter_android. cc", | 3344 "supervised_user/child_accounts/child_account_feedback_reporter_android. cc", |
| 3345 "supervised_user/child_accounts/child_account_feedback_reporter_android. h", | 3345 "supervised_user/child_accounts/child_account_feedback_reporter_android. h", |
| 3346 "supervised_user/child_accounts/child_account_service_android.cc", | 3346 "supervised_user/child_accounts/child_account_service_android.cc", |
| 3347 "supervised_user/child_accounts/child_account_service_android.h", | 3347 "supervised_user/child_accounts/child_account_service_android.h", |
| 3348 ] | 3348 ] |
| 3349 } | 3349 } |
| 3350 } | 3350 } |
| 3351 | 3351 |
| 3352 if (enable_vr_shell && android_java_ui) { | 3352 if ((enable_vr_shell || enable_webvr) && android_java_ui) { |
| 3353 defines += [ "ENABLE_VR_SHELL" ] | 3353 if (enable_vr_shell) { |
| 3354 defines += [ "ENABLE_VR_SHELL" ] | |
| 3355 } | |
| 3356 | |
| 3354 deps += [ "android/vr_shell:vr_shell" ] | 3357 deps += [ "android/vr_shell:vr_shell" ] |
|
agrieve
2016/10/05 19:04:58
It seems this is actually the point of the change
bshe
2016/10/05 19:53:06
make sense. renamed to vr_common. We can't force e
| |
| 3355 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] | 3358 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] |
| 3356 } | 3359 } |
| 3357 | 3360 |
| 3358 if (is_mac) { | 3361 if (is_mac) { |
| 3359 deps += [ | 3362 deps += [ |
| 3360 "//chrome/app_shim", | 3363 "//chrome/app_shim", |
| 3361 "//chrome/browser/apps/app_shim", | 3364 "//chrome/browser/apps/app_shim", |
| 3362 "//third_party/google_toolbox_for_mac", | 3365 "//third_party/google_toolbox_for_mac", |
| 3363 "//third_party/mozilla", | 3366 "//third_party/mozilla", |
| 3364 ] | 3367 ] |
| (...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4281 # linking all of the test support. | 4284 # linking all of the test support. |
| 4282 static_library("pepper_cdm_test_constants") { | 4285 static_library("pepper_cdm_test_constants") { |
| 4283 testonly = true | 4286 testonly = true |
| 4284 visibility = [ "//chrome/*" ] | 4287 visibility = [ "//chrome/*" ] |
| 4285 sources = [ | 4288 sources = [ |
| 4286 "media/pepper_cdm_test_constants.cc", | 4289 "media/pepper_cdm_test_constants.cc", |
| 4287 "media/pepper_cdm_test_constants.h", | 4290 "media/pepper_cdm_test_constants.h", |
| 4288 ] | 4291 ] |
| 4289 } | 4292 } |
| 4290 } | 4293 } |
| OLD | NEW |