| 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 | 9 |
| 10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 sources += rebase_path( | 393 sources += rebase_path( |
| 394 gypi_values.chrome_browser_policy_shared_with_ios_not_chromeos_sou
rces, | 394 gypi_values.chrome_browser_policy_shared_with_ios_not_chromeos_sou
rces, |
| 395 ".", | 395 ".", |
| 396 "//chrome") | 396 "//chrome") |
| 397 } | 397 } |
| 398 if (is_win || is_mac || is_desktop_linux) { | 398 if (is_win || is_mac || is_desktop_linux) { |
| 399 sources += rebase_path(gypi_values.chrome_browser_policy_desktop_sources, | 399 sources += rebase_path(gypi_values.chrome_browser_policy_desktop_sources, |
| 400 ".", | 400 ".", |
| 401 "//chrome") | 401 "//chrome") |
| 402 } | 402 } |
| 403 if (enable_plugins) { | |
| 404 sources += rebase_path(gypi_values.chrome_browser_policy_plugin_sources, | |
| 405 ".", | |
| 406 "//chrome") | |
| 407 } | |
| 408 if (is_android || is_ios) { | 403 if (is_android || is_ios) { |
| 409 sources += rebase_path(gypi_values.chrome_browser_policy_mobile_sources, | 404 sources += rebase_path(gypi_values.chrome_browser_policy_mobile_sources, |
| 410 ".", | 405 ".", |
| 411 "//chrome") | 406 "//chrome") |
| 412 } else { | 407 } else { |
| 413 deps += [ | 408 deps += [ |
| 414 "//chrome/browser/policy:path_parser", | 409 "//chrome/browser/policy:path_parser", |
| 415 "//net:net_browser_services", | 410 "//net:net_browser_services", |
| 416 ] | 411 ] |
| 417 } | 412 } |
| (...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1147 ] | 1142 ] |
| 1148 } | 1143 } |
| 1149 | 1144 |
| 1150 if (enable_wifi_bootstrapping) { | 1145 if (enable_wifi_bootstrapping) { |
| 1151 sources += [ | 1146 sources += [ |
| 1152 "local_discovery/wifi/mock_wifi_manager.cc", | 1147 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1153 "local_discovery/wifi/mock_wifi_manager.h", | 1148 "local_discovery/wifi/mock_wifi_manager.h", |
| 1154 ] | 1149 ] |
| 1155 } | 1150 } |
| 1156 } | 1151 } |
| OLD | NEW |