| 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 3642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3653 | 3653 |
| 3654 if (!is_chrome_branded) { | 3654 if (!is_chrome_branded) { |
| 3655 sources += [ | 3655 sources += [ |
| 3656 "search/local_files_ntp_source.cc", | 3656 "search/local_files_ntp_source.cc", |
| 3657 "search/local_files_ntp_source.h", | 3657 "search/local_files_ntp_source.h", |
| 3658 ] | 3658 ] |
| 3659 } | 3659 } |
| 3660 | 3660 |
| 3661 if (enable_vr) { | 3661 if (enable_vr) { |
| 3662 if (is_android) { | 3662 if (is_android) { |
| 3663 sources += [ |
| 3664 "android/vr_shell/vr_tab_helper.cc", |
| 3665 "android/vr_shell/vr_tab_helper.h", |
| 3666 ] |
| 3663 deps += [ "android/vr_shell:vr_common" ] | 3667 deps += [ "android/vr_shell:vr_common" ] |
| 3664 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] | 3668 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] |
| 3665 } | 3669 } |
| 3666 } | 3670 } |
| 3667 | 3671 |
| 3668 if (is_mac) { | 3672 if (is_mac) { |
| 3669 deps += [ | 3673 deps += [ |
| 3670 "//chrome/app_shim", | 3674 "//chrome/app_shim", |
| 3671 "//chrome/browser/apps/app_shim", | 3675 "//chrome/browser/apps/app_shim", |
| 3672 "//chrome/browser/ui/cocoa/notifications:common", | 3676 "//chrome/browser/ui/cocoa/notifications:common", |
| (...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4712 "media/pepper_cdm_test_constants.cc", | 4716 "media/pepper_cdm_test_constants.cc", |
| 4713 "media/pepper_cdm_test_constants.h", | 4717 "media/pepper_cdm_test_constants.h", |
| 4714 ] | 4718 ] |
| 4715 } | 4719 } |
| 4716 } | 4720 } |
| 4717 | 4721 |
| 4718 service_manifest("preferences_forwarder_manifest") { | 4722 service_manifest("preferences_forwarder_manifest") { |
| 4719 name = "preferences_forwarder" | 4723 name = "preferences_forwarder" |
| 4720 source = "prefs/forwarder_manifest.json" | 4724 source = "prefs/forwarder_manifest.json" |
| 4721 } | 4725 } |
| OLD | NEW |