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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 } | 359 } |
360 if (enable_task_manager) { | 360 if (enable_task_manager) { |
361 sources += rebase_path(gypi_values.chrome_browser_task_manager_sources, | 361 sources += rebase_path(gypi_values.chrome_browser_task_manager_sources, |
362 ".", | 362 ".", |
363 "//chrome") | 363 "//chrome") |
364 } | 364 } |
365 if (enable_spellcheck) { | 365 if (enable_spellcheck) { |
366 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, | 366 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, |
367 ".", | 367 ".", |
368 "//chrome") | 368 "//chrome") |
369 deps += [ "//third_party/hunspell_new" ] | 369 deps += [ "//third_party/hunspell" ] |
370 } | 370 } |
371 if (enable_nacl) { | 371 if (enable_nacl) { |
372 sources += | 372 sources += |
373 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") | 373 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") |
374 deps += [ "//components/nacl:nacl_browser" ] | 374 deps += [ "//components/nacl:nacl_browser" ] |
375 } | 375 } |
376 | 376 |
377 if (enable_configuration_policy) { | 377 if (enable_configuration_policy) { |
378 sources += | 378 sources += |
379 rebase_path(gypi_values.chrome_browser_policy_shared_with_ios_sources, | 379 rebase_path(gypi_values.chrome_browser_policy_shared_with_ios_sources, |
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1133 ] | 1133 ] |
1134 } | 1134 } |
1135 | 1135 |
1136 if (enable_wifi_bootstrapping) { | 1136 if (enable_wifi_bootstrapping) { |
1137 sources += [ | 1137 sources += [ |
1138 "local_discovery/wifi/mock_wifi_manager.cc", | 1138 "local_discovery/wifi/mock_wifi_manager.cc", |
1139 "local_discovery/wifi/mock_wifi_manager.h", | 1139 "local_discovery/wifi/mock_wifi_manager.h", |
1140 ] | 1140 ] |
1141 } | 1141 } |
1142 } | 1142 } |
OLD | NEW |