| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "//third_party/WebKit/public:image_resources", | 65 "//third_party/WebKit/public:image_resources", |
| 66 "//third_party/WebKit/public:resources", | 66 "//third_party/WebKit/public:resources", |
| 67 "//third_party/icu", | 67 "//third_party/icu", |
| 68 "//third_party/re2", | 68 "//third_party/re2", |
| 69 "//third_party/widevine/cdm:version_h", | 69 "//third_party/widevine/cdm:version_h", |
| 70 "//ui/surface", | 70 "//ui/surface", |
| 71 "//v8:v8", | 71 "//v8:v8", |
| 72 ] | 72 ] |
| 73 | 73 |
| 74 if (!is_ios) { | 74 if (!is_ios) { |
| 75 deps += [ "//chrome/common/net" ] | 75 deps += [ |
| 76 "//chrome/common/net", |
| 77 "//media", |
| 78 ] |
| 76 } | 79 } |
| 77 | 80 |
| 78 if (enable_nacl) { | 81 if (enable_nacl) { |
| 79 deps += [ | 82 deps += [ |
| 80 "//components/nacl", | 83 "//components/nacl", |
| 81 "//components/nacl:nacl_renderer", | 84 "//components/nacl:nacl_renderer", |
| 82 ] | 85 ] |
| 83 } | 86 } |
| 84 | 87 |
| 85 if (enable_plugins) { | 88 if (enable_plugins) { |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 deps += [ "//chrome/service" ] | 209 deps += [ "//chrome/service" ] |
| 207 } | 210 } |
| 208 | 211 |
| 209 if (enable_webrtc) { | 212 if (enable_webrtc) { |
| 210 sources += [ | 213 sources += [ |
| 211 "media/mock_webrtc_logging_message_filter.cc", | 214 "media/mock_webrtc_logging_message_filter.cc", |
| 212 "media/mock_webrtc_logging_message_filter.h", | 215 "media/mock_webrtc_logging_message_filter.h", |
| 213 ] | 216 ] |
| 214 } | 217 } |
| 215 } | 218 } |
| OLD | NEW |