| 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 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 | 396 |
| 397 if (enable_plugins) { | 397 if (enable_plugins) { |
| 398 sources += | 398 sources += |
| 399 rebase_path(gypi_values.chrome_browser_plugins_sources, ".", "//chrome") | 399 rebase_path(gypi_values.chrome_browser_plugins_sources, ".", "//chrome") |
| 400 deps += [ | 400 deps += [ |
| 401 "//components/pdf/browser", | 401 "//components/pdf/browser", |
| 402 "//ppapi/proxy:ipc", | 402 "//ppapi/proxy:ipc", |
| 403 "//third_party/adobe/flash:flapper_version_h", | 403 "//third_party/adobe/flash:flapper_version_h", |
| 404 ] | 404 ] |
| 405 } | 405 } |
| 406 |
| 407 if (enable_media_router) { |
| 408 deps += [ "//chrome/browser/media/router:media_router" ] |
| 409 } |
| 410 |
| 406 if (safe_browsing_mode != 0) { | 411 if (safe_browsing_mode != 0) { |
| 407 sources += | 412 sources += |
| 408 rebase_path(gypi_values.chrome_browser_safe_browsing_basic_sources, | 413 rebase_path(gypi_values.chrome_browser_safe_browsing_basic_sources, |
| 409 ".", | 414 ".", |
| 410 "//chrome") | 415 "//chrome") |
| 411 deps += [ | 416 deps += [ |
| 412 "//chrome/browser/safe_browsing:chunk_proto", | 417 "//chrome/browser/safe_browsing:chunk_proto", |
| 413 "//chrome/browser/safe_browsing:metadata_proto", | 418 "//chrome/browser/safe_browsing:metadata_proto", |
| 414 "//chrome/browser/safe_browsing:report_proto", | 419 "//chrome/browser/safe_browsing:report_proto", |
| 415 ] | 420 ] |
| (...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1099 ] | 1104 ] |
| 1100 } | 1105 } |
| 1101 | 1106 |
| 1102 if (enable_wifi_bootstrapping) { | 1107 if (enable_wifi_bootstrapping) { |
| 1103 sources += [ | 1108 sources += [ |
| 1104 "local_discovery/wifi/mock_wifi_manager.cc", | 1109 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1105 "local_discovery/wifi/mock_wifi_manager.h", | 1110 "local_discovery/wifi/mock_wifi_manager.h", |
| 1106 ] | 1111 ] |
| 1107 } | 1112 } |
| 1108 } | 1113 } |
| OLD | NEW |