| 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("//extensions/features/features.gni") | 6 import("//extensions/features/features.gni") |
| 7 | 7 |
| 8 assert(enable_extensions) | 8 assert(enable_extensions) |
| 9 | 9 |
| 10 source_set("renderer") { | 10 source_set("renderer") { |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 | 238 |
| 239 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 239 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 240 "//build/config/compiler:no_size_t_to_int_warning", | 240 "//build/config/compiler:no_size_t_to_int_warning", |
| 241 ] | 241 ] |
| 242 | 242 |
| 243 deps = [ | 243 deps = [ |
| 244 "//chrome:resources", | 244 "//chrome:resources", |
| 245 "//components/guest_view/renderer", | 245 "//components/guest_view/renderer", |
| 246 "//content:resources", | 246 "//content:resources", |
| 247 "//extensions:extensions_resources", | 247 "//extensions:extensions_resources", |
| 248 "//extensions/common", |
| 248 "//extensions/common/api", | 249 "//extensions/common/api", |
| 249 "//gin", | 250 "//gin", |
| 250 "//mojo/edk/js", | 251 "//mojo/edk/js", |
| 251 "//mojo/public/js", | 252 "//mojo/public/js", |
| 252 "//skia", | 253 "//skia", |
| 253 "//third_party/WebKit/public:blink", | 254 "//third_party/WebKit/public:blink", |
| 254 "//third_party/cld", | 255 "//third_party/cld", |
| 255 ] | 256 ] |
| 256 | 257 |
| 257 if (proprietary_codecs && enable_wifi_display) { | 258 if (proprietary_codecs && enable_wifi_display) { |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 "//ui/base", | 356 "//ui/base", |
| 356 ] | 357 ] |
| 357 | 358 |
| 358 if (enable_wifi_display && proprietary_codecs) { | 359 if (enable_wifi_display && proprietary_codecs) { |
| 359 sources += [ | 360 sources += [ |
| 360 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 361 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 361 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 362 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 362 ] | 363 ] |
| 363 } | 364 } |
| 364 } | 365 } |
| OLD | NEW |