| 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 | 6 |
| 7 assert(enable_extensions) | 7 assert(enable_extensions) |
| 8 | 8 |
| 9 source_set("renderer") { | 9 source_set("renderer") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 | 200 |
| 201 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 201 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 202 "//build/config/compiler:no_size_t_to_int_warning", | 202 "//build/config/compiler:no_size_t_to_int_warning", |
| 203 ] | 203 ] |
| 204 | 204 |
| 205 deps = [ | 205 deps = [ |
| 206 "//chrome:resources", | 206 "//chrome:resources", |
| 207 "//components/guest_view/renderer", | 207 "//components/guest_view/renderer", |
| 208 "//content:resources", | 208 "//content:resources", |
| 209 "//extensions:extensions_resources", | 209 "//extensions:extensions_resources", |
| 210 "//extensions/common/api", |
| 210 "//gin", | 211 "//gin", |
| 211 "//mojo/edk/js", | 212 "//mojo/edk/js", |
| 212 "//mojo/public/js", | 213 "//mojo/public/js", |
| 213 "//skia", | 214 "//skia", |
| 214 "//third_party/WebKit/public:blink", | 215 "//third_party/WebKit/public:blink", |
| 215 "//third_party/cld", | 216 "//third_party/cld", |
| 216 ] | 217 ] |
| 217 | 218 |
| 218 if (proprietary_codecs && enable_wifi_display) { | 219 if (proprietary_codecs && enable_wifi_display) { |
| 219 sources += [ | 220 sources += [ |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 "//ui/base", | 300 "//ui/base", |
| 300 ] | 301 ] |
| 301 | 302 |
| 302 if (enable_wifi_display && proprietary_codecs) { | 303 if (enable_wifi_display && proprietary_codecs) { |
| 303 sources += [ | 304 sources += [ |
| 304 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 305 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 305 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 306 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 306 ] | 307 ] |
| 307 } | 308 } |
| 308 } | 309 } |
| OLD | NEW |