| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//components/nacl/nacl_defines.gni") | 8 import("//components/nacl/nacl_defines.gni") |
| 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
| 10 # produces a conflict for the "grit" template so we have to only include one. | 10 # produces a conflict for the "grit" template so we have to only include one. |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 sources += [ | 223 sources += [ |
| 224 "download/download_dir_policy_handler.cc", | 224 "download/download_dir_policy_handler.cc", |
| 225 "download/download_dir_policy_handler.h", | 225 "download/download_dir_policy_handler.h", |
| 226 ] | 226 ] |
| 227 } | 227 } |
| 228 if (is_mac) { | 228 if (is_mac) { |
| 229 sources += rebase_path(gypi_values.chrome_browser_mac_sources, | 229 sources += rebase_path(gypi_values.chrome_browser_mac_sources, |
| 230 ".", "//chrome") | 230 ".", "//chrome") |
| 231 deps += [ | 231 deps += [ |
| 232 #"app_shim" TODO(GYP) | 232 #"app_shim" TODO(GYP) |
| 233 #"browser_app_shim" TODO(GYP) |
| 233 ] | 234 ] |
| 234 } | 235 } |
| 235 if (!toolkit_views) { | 236 if (!toolkit_views) { |
| 236 deps -= [ "//components/native_app_window" ] | 237 deps -= [ "//components/native_app_window" ] |
| 237 } | 238 } |
| 238 if (cld2_data_source == "component") { | 239 if (cld2_data_source == "component") { |
| 239 sources += [ | 240 sources += [ |
| 240 "component_updater/cld_component_installer.cc", | 241 "component_updater/cld_component_installer.cc", |
| 241 "component_updater/cld_component_installer.h", | 242 "component_updater/cld_component_installer.h", |
| 242 ] | 243 ] |
| (...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 928 ] | 929 ] |
| 929 } | 930 } |
| 930 | 931 |
| 931 if (enable_wifi_bootstrapping) { | 932 if (enable_wifi_bootstrapping) { |
| 932 sources += [ | 933 sources += [ |
| 933 "local_discovery/wifi/mock_wifi_manager.cc", | 934 "local_discovery/wifi/mock_wifi_manager.cc", |
| 934 "local_discovery/wifi/mock_wifi_manager.h", | 935 "local_discovery/wifi/mock_wifi_manager.h", |
| 935 ] | 936 ] |
| 936 } | 937 } |
| 937 } | 938 } |
| OLD | NEW |