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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 sources += rebase_path(gypi_values.chrome_browser_policy_disabled_sources, | 400 sources += rebase_path(gypi_values.chrome_browser_policy_disabled_sources, |
401 ".", | 401 ".", |
402 "//chrome") | 402 "//chrome") |
403 } | 403 } |
404 | 404 |
405 if (enable_plugins) { | 405 if (enable_plugins) { |
406 sources += | 406 sources += |
407 rebase_path(gypi_values.chrome_browser_plugins_sources, ".", "//chrome") | 407 rebase_path(gypi_values.chrome_browser_plugins_sources, ".", "//chrome") |
408 deps += [ | 408 deps += [ |
409 "//components/pdf/browser", | 409 "//components/pdf/browser", |
410 "//ppapi:ppapi_ipc", | 410 "//ppapi/proxy:ipc", |
411 "//third_party/adobe/flash:flapper_version_h", | 411 "//third_party/adobe/flash:flapper_version_h", |
412 ] | 412 ] |
413 } | 413 } |
414 if (safe_browsing_mode != 0) { | 414 if (safe_browsing_mode != 0) { |
415 sources += | 415 sources += |
416 rebase_path(gypi_values.chrome_browser_safe_browsing_basic_sources, | 416 rebase_path(gypi_values.chrome_browser_safe_browsing_basic_sources, |
417 ".", | 417 ".", |
418 "//chrome") | 418 "//chrome") |
419 deps += [ | 419 deps += [ |
420 "//chrome/browser/safe_browsing:chunk_proto", | 420 "//chrome/browser/safe_browsing:chunk_proto", |
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1109 ] | 1109 ] |
1110 } | 1110 } |
1111 | 1111 |
1112 if (enable_wifi_bootstrapping) { | 1112 if (enable_wifi_bootstrapping) { |
1113 sources += [ | 1113 sources += [ |
1114 "local_discovery/wifi/mock_wifi_manager.cc", | 1114 "local_discovery/wifi/mock_wifi_manager.cc", |
1115 "local_discovery/wifi/mock_wifi_manager.h", | 1115 "local_discovery/wifi/mock_wifi_manager.h", |
1116 ] | 1116 ] |
1117 } | 1117 } |
1118 } | 1118 } |
OLD | NEW |