| 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 3631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3642 | 3642 |
| 3643 if (!is_chrome_branded) { | 3643 if (!is_chrome_branded) { |
| 3644 sources += [ | 3644 sources += [ |
| 3645 "search/local_files_ntp_source.cc", | 3645 "search/local_files_ntp_source.cc", |
| 3646 "search/local_files_ntp_source.h", | 3646 "search/local_files_ntp_source.h", |
| 3647 ] | 3647 ] |
| 3648 } | 3648 } |
| 3649 | 3649 |
| 3650 if (enable_vr) { | 3650 if (enable_vr) { |
| 3651 if (is_android) { | 3651 if (is_android) { |
| 3652 sources += [ |
| 3653 "android/vr_shell/vr_tab_helper.cc", |
| 3654 "android/vr_shell/vr_tab_helper.h", |
| 3655 ] |
| 3652 deps += [ "android/vr_shell:vr_common" ] | 3656 deps += [ "android/vr_shell:vr_common" ] |
| 3653 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] | 3657 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] |
| 3654 } | 3658 } |
| 3655 } | 3659 } |
| 3656 | 3660 |
| 3657 if (is_mac) { | 3661 if (is_mac) { |
| 3658 deps += [ | 3662 deps += [ |
| 3659 "//chrome/app_shim", | 3663 "//chrome/app_shim", |
| 3660 "//chrome/browser/apps/app_shim", | 3664 "//chrome/browser/apps/app_shim", |
| 3661 "//chrome/browser/ui/cocoa/notifications:common", | 3665 "//chrome/browser/ui/cocoa/notifications:common", |
| (...skipping 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4697 "media/pepper_cdm_test_constants.cc", | 4701 "media/pepper_cdm_test_constants.cc", |
| 4698 "media/pepper_cdm_test_constants.h", | 4702 "media/pepper_cdm_test_constants.h", |
| 4699 ] | 4703 ] |
| 4700 } | 4704 } |
| 4701 } | 4705 } |
| 4702 | 4706 |
| 4703 service_manifest("preferences_forwarder_manifest") { | 4707 service_manifest("preferences_forwarder_manifest") { |
| 4704 name = "preferences_forwarder" | 4708 name = "preferences_forwarder" |
| 4705 source = "prefs/forwarder_manifest.json" | 4709 source = "prefs/forwarder_manifest.json" |
| 4706 } | 4710 } |
| OLD | NEW |