| 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("//build/gypi_to_gn.py", | 8 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 9 [ rebase_path("../chrome_renderer.gypi") ], | 9 [ rebase_path("../chrome_renderer.gypi") ], |
| 10 "scope", | 10 "scope", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 } | 25 } |
| 26 | 26 |
| 27 static_library("renderer") { | 27 static_library("renderer") { |
| 28 sources = rebase_path(gypi_values.chrome_renderer_sources, ".", "..") | 28 sources = rebase_path(gypi_values.chrome_renderer_sources, ".", "..") |
| 29 | 29 |
| 30 defines = [] | 30 defines = [] |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 "//base/allocator", | 33 "//base/allocator", |
| 34 "//chrome/common", | 34 "//chrome/common", |
| 35 "//chrome/common:mojo_bindings", |
| 35 "//chrome/common/net", | 36 "//chrome/common/net", |
| 36 "//chrome:resources", | 37 "//chrome:resources", |
| 37 "//chrome:strings", | 38 "//chrome:strings", |
| 38 "//components/autofill/content/renderer", | 39 "//components/autofill/content/renderer", |
| 39 "//components/content_settings/content/common", | 40 "//components/content_settings/content/common", |
| 40 "//components/cdm/renderer", | 41 "//components/cdm/renderer", |
| 41 "//components/data_reduction_proxy/content/common", | 42 "//components/data_reduction_proxy/content/common", |
| 42 "//components/data_reduction_proxy/core/common", | 43 "//components/data_reduction_proxy/core/common", |
| 43 "//components/network_hints/renderer", | 44 "//components/network_hints/renderer", |
| 44 "//components/error_page/renderer", | 45 "//components/error_page/renderer", |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 deps += [ "//chrome/service" ] | 194 deps += [ "//chrome/service" ] |
| 194 } | 195 } |
| 195 | 196 |
| 196 if (enable_webrtc) { | 197 if (enable_webrtc) { |
| 197 sources += [ | 198 sources += [ |
| 198 "media/mock_webrtc_logging_message_filter.cc", | 199 "media/mock_webrtc_logging_message_filter.cc", |
| 199 "media/mock_webrtc_logging_message_filter.h", | 200 "media/mock_webrtc_logging_message_filter.h", |
| 200 ] | 201 ] |
| 201 } | 202 } |
| 202 } | 203 } |
| OLD | NEW |