| 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 | 8 |
| 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 } | 345 } |
| 346 if (enable_spellcheck) { | 346 if (enable_spellcheck) { |
| 347 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, | 347 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, |
| 348 ".", | 348 ".", |
| 349 "//chrome") | 349 "//chrome") |
| 350 deps += [ "//third_party/hunspell" ] | 350 deps += [ "//third_party/hunspell" ] |
| 351 } | 351 } |
| 352 if (enable_nacl) { | 352 if (enable_nacl) { |
| 353 sources += | 353 sources += |
| 354 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") | 354 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") |
| 355 #deps += [ "//components/nacl:nacl_browser" ] TODO(GYP) | 355 deps += [ "//components/nacl:nacl_browser" ] |
| 356 } | 356 } |
| 357 | 357 |
| 358 if (enable_configuration_policy) { | 358 if (enable_configuration_policy) { |
| 359 sources += | 359 sources += |
| 360 rebase_path(gypi_values.chrome_browser_policy_shared_with_ios_sources, | 360 rebase_path(gypi_values.chrome_browser_policy_shared_with_ios_sources, |
| 361 ".", | 361 ".", |
| 362 "//chrome") | 362 "//chrome") |
| 363 deps += [ | 363 deps += [ |
| 364 "//components/policy", | 364 "//components/policy", |
| 365 "//components/policy/proto", | 365 "//components/policy/proto", |
| (...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1099 ] | 1099 ] |
| 1100 } | 1100 } |
| 1101 | 1101 |
| 1102 if (enable_wifi_bootstrapping) { | 1102 if (enable_wifi_bootstrapping) { |
| 1103 sources += [ | 1103 sources += [ |
| 1104 "local_discovery/wifi/mock_wifi_manager.cc", | 1104 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1105 "local_discovery/wifi/mock_wifi_manager.h", | 1105 "local_discovery/wifi/mock_wifi_manager.h", |
| 1106 ] | 1106 ] |
| 1107 } | 1107 } |
| 1108 } | 1108 } |
| OLD | NEW |