| 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 199 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 200 "//build/config/compiler:no_size_t_to_int_warning", | 200 "//build/config/compiler:no_size_t_to_int_warning", |
| 201 ] | 201 ] |
| 202 | 202 |
| 203 deps = [ | 203 deps = [ |
| 204 "//chrome:resources", | 204 "//chrome:resources", |
| 205 "//components/guest_view/renderer", | 205 "//components/guest_view/renderer", |
| 206 "//content:resources", | 206 "//content:resources", |
| 207 "//extensions:extensions_resources", | 207 "//extensions:extensions_resources", |
| 208 "//gin", | 208 "//gin", |
| 209 "//mojo/edk/js", | |
| 210 "//mojo/public/js", | 209 "//mojo/public/js", |
| 211 "//skia", | 210 "//skia", |
| 212 "//third_party/WebKit/public:blink", | 211 "//third_party/WebKit/public:blink", |
| 213 "//third_party/cld", | 212 "//third_party/cld", |
| 214 ] | 213 ] |
| 215 | 214 |
| 216 if (proprietary_codecs && enable_wifi_display) { | 215 if (proprietary_codecs && enable_wifi_display) { |
| 217 sources += [ | 216 sources += [ |
| 218 "api/display_source/wifi_display/wifi_display_audio_encoder.cc", | 217 "api/display_source/wifi_display/wifi_display_audio_encoder.cc", |
| 219 "api/display_source/wifi_display/wifi_display_audio_encoder.h", | 218 "api/display_source/wifi_display/wifi_display_audio_encoder.h", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 ":renderer", | 281 ":renderer", |
| 283 "//base", | 282 "//base", |
| 284 "//content/public/child", | 283 "//content/public/child", |
| 285 "//extensions:extensions_renderer_resources", | 284 "//extensions:extensions_renderer_resources", |
| 286 "//gin:gin_test", | 285 "//gin:gin_test", |
| 287 | 286 |
| 288 # TODO(brettw) these tests should not be including headers from browser. | 287 # TODO(brettw) these tests should not be including headers from browser. |
| 289 "//extensions/browser/mojo", | 288 "//extensions/browser/mojo", |
| 290 "//extensions/common", | 289 "//extensions/common", |
| 291 "//gin", | 290 "//gin", |
| 292 "//mojo/edk/js", | |
| 293 "//testing/gtest", | 291 "//testing/gtest", |
| 294 "//third_party/WebKit/public:blink", | 292 "//third_party/WebKit/public:blink", |
| 295 "//ui/base", | 293 "//ui/base", |
| 296 ] | 294 ] |
| 297 | 295 |
| 298 if (enable_wifi_display && proprietary_codecs) { | 296 if (enable_wifi_display && proprietary_codecs) { |
| 299 sources += [ | 297 sources += [ |
| 300 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 298 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 301 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 299 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 302 ] | 300 ] |
| 303 } | 301 } |
| 304 } | 302 } |
| OLD | NEW |