| 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 3662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3673 | 3673 |
| 3674 if (!is_chrome_branded) { | 3674 if (!is_chrome_branded) { |
| 3675 sources += [ | 3675 sources += [ |
| 3676 "search/local_files_ntp_source.cc", | 3676 "search/local_files_ntp_source.cc", |
| 3677 "search/local_files_ntp_source.h", | 3677 "search/local_files_ntp_source.h", |
| 3678 ] | 3678 ] |
| 3679 } | 3679 } |
| 3680 | 3680 |
| 3681 if (enable_vr) { | 3681 if (enable_vr) { |
| 3682 if (is_android) { | 3682 if (is_android) { |
| 3683 sources += [ |
| 3684 "android/vr_shell/vr_tab_helper.cc", |
| 3685 "android/vr_shell/vr_tab_helper.h", |
| 3686 ] |
| 3683 deps += [ "android/vr_shell:vr_common" ] | 3687 deps += [ "android/vr_shell:vr_common" ] |
| 3684 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] | 3688 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] |
| 3685 } | 3689 } |
| 3686 } | 3690 } |
| 3687 | 3691 |
| 3688 if (is_mac) { | 3692 if (is_mac) { |
| 3689 deps += [ | 3693 deps += [ |
| 3690 "//chrome/app_shim", | 3694 "//chrome/app_shim", |
| 3691 "//chrome/browser/apps/app_shim", | 3695 "//chrome/browser/apps/app_shim", |
| 3692 "//chrome/browser/ui/cocoa/notifications:common", | 3696 "//chrome/browser/ui/cocoa/notifications:common", |
| (...skipping 1040 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4733 "media/pepper_cdm_test_constants.cc", | 4737 "media/pepper_cdm_test_constants.cc", |
| 4734 "media/pepper_cdm_test_constants.h", | 4738 "media/pepper_cdm_test_constants.h", |
| 4735 ] | 4739 ] |
| 4736 } | 4740 } |
| 4737 } | 4741 } |
| 4738 | 4742 |
| 4739 service_manifest("preferences_forwarder_manifest") { | 4743 service_manifest("preferences_forwarder_manifest") { |
| 4740 name = "preferences_forwarder" | 4744 name = "preferences_forwarder" |
| 4741 source = "prefs/forwarder_manifest.json" | 4745 source = "prefs/forwarder_manifest.json" |
| 4742 } | 4746 } |
| OLD | NEW |