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 | 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 } | 355 } |
356 if (enable_spellcheck) { | 356 if (enable_spellcheck) { |
357 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, | 357 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, |
358 ".", | 358 ".", |
359 "//chrome") | 359 "//chrome") |
360 deps += [ "//third_party/hunspell" ] | 360 deps += [ "//third_party/hunspell" ] |
361 } | 361 } |
362 if (enable_nacl) { | 362 if (enable_nacl) { |
363 sources += | 363 sources += |
364 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") | 364 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") |
365 #deps += [ "//components/nacl:nacl_browser" ] TODO(GYP) | 365 deps += [ "//components/nacl:nacl_browser" ] |
366 } | 366 } |
367 | 367 |
368 if (enable_configuration_policy) { | 368 if (enable_configuration_policy) { |
369 sources += | 369 sources += |
370 rebase_path(gypi_values.chrome_browser_policy_shared_with_ios_sources, | 370 rebase_path(gypi_values.chrome_browser_policy_shared_with_ios_sources, |
371 ".", | 371 ".", |
372 "//chrome") | 372 "//chrome") |
373 deps += [ | 373 deps += [ |
374 "//components/policy", | 374 "//components/policy", |
375 "//components/policy/proto", | 375 "//components/policy/proto", |
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1113 ] | 1113 ] |
1114 } | 1114 } |
1115 | 1115 |
1116 if (enable_wifi_bootstrapping) { | 1116 if (enable_wifi_bootstrapping) { |
1117 sources += [ | 1117 sources += [ |
1118 "local_discovery/wifi/mock_wifi_manager.cc", | 1118 "local_discovery/wifi/mock_wifi_manager.cc", |
1119 "local_discovery/wifi/mock_wifi_manager.h", | 1119 "local_discovery/wifi/mock_wifi_manager.h", |
1120 ] | 1120 ] |
1121 } | 1121 } |
1122 } | 1122 } |
OLD | NEW |