| 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 3337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3348 if (enable_supervised_users) { | 3348 if (enable_supervised_users) { |
| 3349 sources += [ | 3349 sources += [ |
| 3350 "supervised_user/child_accounts/child_account_feedback_reporter_android.
cc", | 3350 "supervised_user/child_accounts/child_account_feedback_reporter_android.
cc", |
| 3351 "supervised_user/child_accounts/child_account_feedback_reporter_android.
h", | 3351 "supervised_user/child_accounts/child_account_feedback_reporter_android.
h", |
| 3352 "supervised_user/child_accounts/child_account_service_android.cc", | 3352 "supervised_user/child_accounts/child_account_service_android.cc", |
| 3353 "supervised_user/child_accounts/child_account_service_android.h", | 3353 "supervised_user/child_accounts/child_account_service_android.h", |
| 3354 ] | 3354 ] |
| 3355 } | 3355 } |
| 3356 } | 3356 } |
| 3357 | 3357 |
| 3358 if (enable_vr_shell && android_java_ui) { | 3358 if (enable_vr_shell || enable_webvr) { |
| 3359 defines += [ "ENABLE_VR_SHELL" ] | 3359 if (enable_vr_shell) { |
| 3360 deps += [ "android/vr_shell:vr_shell" ] | 3360 defines += [ "ENABLE_VR_SHELL" ] |
| 3361 } |
| 3362 |
| 3363 deps += [ "android/vr_shell:vr_common" ] |
| 3361 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] | 3364 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] |
| 3362 } | 3365 } |
| 3363 | 3366 |
| 3364 if (is_mac) { | 3367 if (is_mac) { |
| 3365 deps += [ | 3368 deps += [ |
| 3366 "//chrome/app_shim", | 3369 "//chrome/app_shim", |
| 3367 "//chrome/browser/apps/app_shim", | 3370 "//chrome/browser/apps/app_shim", |
| 3368 "//third_party/google_toolbox_for_mac", | 3371 "//third_party/google_toolbox_for_mac", |
| 3369 "//third_party/mozilla", | 3372 "//third_party/mozilla", |
| 3370 ] | 3373 ] |
| (...skipping 915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4286 # linking all of the test support. | 4289 # linking all of the test support. |
| 4287 static_library("pepper_cdm_test_constants") { | 4290 static_library("pepper_cdm_test_constants") { |
| 4288 testonly = true | 4291 testonly = true |
| 4289 visibility = [ "//chrome/*" ] | 4292 visibility = [ "//chrome/*" ] |
| 4290 sources = [ | 4293 sources = [ |
| 4291 "media/pepper_cdm_test_constants.cc", | 4294 "media/pepper_cdm_test_constants.cc", |
| 4292 "media/pepper_cdm_test_constants.h", | 4295 "media/pepper_cdm_test_constants.h", |
| 4293 ] | 4296 ] |
| 4294 } | 4297 } |
| 4295 } | 4298 } |
| OLD | NEW |