| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 | 7 |
| 8 gypi_values = exec_script( | 8 gypi_values = exec_script( |
| 9 "//build/gypi_to_gn.py", | 9 "//build/gypi_to_gn.py", |
| 10 [ rebase_path("../chrome_renderer.gypi") ], | 10 [ rebase_path("../chrome_renderer.gypi") ], |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "//base/allocator", | 33 "//base/allocator", |
| 34 "//chrome/common", | 34 "//chrome/common", |
| 35 "//chrome/common/net", | 35 "//chrome/common/net", |
| 36 "//chrome:resources", | 36 "//chrome:resources", |
| 37 "//chrome:strings", | 37 "//chrome:strings", |
| 38 "//components/autofill/content/renderer", | 38 "//components/autofill/content/renderer", |
| 39 "//components/cdm/renderer", | 39 "//components/cdm/renderer", |
| 40 "//components/data_reduction_proxy/core/common", | 40 "//components/data_reduction_proxy/core/common", |
| 41 "//components/error_page/renderer", | 41 "//components/error_page/renderer", |
| 42 "//components/password_manager/content/renderer", | 42 "//components/password_manager/content/renderer", |
| 43 "//components/plugins/renderer", |
| 43 "//components/startup_metric_utils", | 44 "//components/startup_metric_utils", |
| 44 "//components/translate/content/renderer", | 45 "//components/translate/content/renderer", |
| 45 "//components/translate/core/common", | 46 "//components/translate/core/common", |
| 46 "//components/translate/core/language_detection", | 47 "//components/translate/core/language_detection", |
| 47 "//components/visitedlink/renderer", | 48 "//components/visitedlink/renderer", |
| 48 "//components/web_cache/renderer", | 49 "//components/web_cache/renderer", |
| 49 "//content/app/resources", | 50 "//content/app/resources", |
| 50 "//content/app/strings", | 51 "//content/app/strings", |
| 51 "//content/public/renderer", | 52 "//content/public/renderer", |
| 52 "//media/cast:net", | 53 "//media/cast:net", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 70 #'../components/nacl.gyp:nacl', TODO(GYP) | 71 #'../components/nacl.gyp:nacl', TODO(GYP) |
| 71 #'../components/nacl.gyp:nacl_renderer', TODO(GYP) | 72 #'../components/nacl.gyp:nacl_renderer', TODO(GYP) |
| 72 ] | 73 ] |
| 73 } | 74 } |
| 74 | 75 |
| 75 if (enable_plugins) { | 76 if (enable_plugins) { |
| 76 sources += rebase_path(gypi_values.chrome_renderer_plugin_sources, | 77 sources += rebase_path(gypi_values.chrome_renderer_plugin_sources, |
| 77 ".", "..") | 78 ".", "..") |
| 78 deps += [ | 79 deps += [ |
| 79 "//components/pdf/renderer", | 80 "//components/pdf/renderer", |
| 80 "//components/plugins/renderer", | |
| 81 "//ppapi:ppapi_host", | 81 "//ppapi:ppapi_host", |
| 82 "//ppapi:ppapi_ipc", | 82 "//ppapi:ppapi_ipc", |
| 83 "//ppapi:ppapi_proxy", | 83 "//ppapi:ppapi_proxy", |
| 84 "//ppapi:ppapi_shared", | 84 "//ppapi:ppapi_shared", |
| 85 ] | 85 ] |
| 86 } | 86 } |
| 87 | 87 |
| 88 if (safe_browsing_mode == 1) { | 88 if (safe_browsing_mode == 1) { |
| 89 sources += rebase_path(gypi_values.chrome_renderer_safe_browsing_sources, | 89 sources += rebase_path(gypi_values.chrome_renderer_safe_browsing_sources, |
| 90 ".", "..") | 90 ".", "..") |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 ] | 190 ] |
| 191 } | 191 } |
| 192 | 192 |
| 193 if (enable_webrtc) { | 193 if (enable_webrtc) { |
| 194 sources += [ | 194 sources += [ |
| 195 "media/mock_webrtc_logging_message_filter.cc", | 195 "media/mock_webrtc_logging_message_filter.cc", |
| 196 "media/mock_webrtc_logging_message_filter.h", | 196 "media/mock_webrtc_logging_message_filter.h", |
| 197 ] | 197 ] |
| 198 } | 198 } |
| 199 } | 199 } |
| OLD | NEW |