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