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