| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 "//build/config/compiler:no_size_t_to_int_warning", | 229 "//build/config/compiler:no_size_t_to_int_warning", |
| 230 ] | 230 ] |
| 231 | 231 |
| 232 deps = [ | 232 deps = [ |
| 233 "//chrome:resources", | 233 "//chrome:resources", |
| 234 "//components/guest_view/renderer", | 234 "//components/guest_view/renderer", |
| 235 "//content:resources", | 235 "//content:resources", |
| 236 "//extensions:extensions_resources", | 236 "//extensions:extensions_resources", |
| 237 "//extensions/common/api", | 237 "//extensions/common/api", |
| 238 "//gin", | 238 "//gin", |
| 239 "//mojo/edk/js", | |
| 240 "//mojo/public/js", | 239 "//mojo/public/js", |
| 241 "//skia", | 240 "//skia", |
| 242 "//third_party/WebKit/public:blink", | 241 "//third_party/WebKit/public:blink", |
| 243 "//third_party/cld", | 242 "//third_party/cld", |
| 244 ] | 243 ] |
| 245 | 244 |
| 246 if (proprietary_codecs && enable_wifi_display) { | 245 if (proprietary_codecs && enable_wifi_display) { |
| 247 sources += [ | 246 sources += [ |
| 248 "api/display_source/wifi_display/wifi_display_audio_encoder.cc", | 247 "api/display_source/wifi_display/wifi_display_audio_encoder.cc", |
| 249 "api/display_source/wifi_display/wifi_display_audio_encoder.h", | 248 "api/display_source/wifi_display/wifi_display_audio_encoder.h", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 "//components/crx_file:crx_file", | 325 "//components/crx_file:crx_file", |
| 327 "//content/public/child", | 326 "//content/public/child", |
| 328 "//extensions:extensions_renderer_resources", | 327 "//extensions:extensions_renderer_resources", |
| 329 "//extensions:test_support", | 328 "//extensions:test_support", |
| 330 "//gin:gin_test", | 329 "//gin:gin_test", |
| 331 | 330 |
| 332 # TODO(brettw) these tests should not be including headers from browser. | 331 # TODO(brettw) these tests should not be including headers from browser. |
| 333 "//extensions/browser", | 332 "//extensions/browser", |
| 334 "//extensions/common", | 333 "//extensions/common", |
| 335 "//gin", | 334 "//gin", |
| 336 "//mojo/edk/js", | |
| 337 "//testing/gmock", | 335 "//testing/gmock", |
| 338 "//testing/gtest", | 336 "//testing/gtest", |
| 339 "//third_party/WebKit/public:blink", | 337 "//third_party/WebKit/public:blink", |
| 340 "//ui/base", | 338 "//ui/base", |
| 341 ] | 339 ] |
| 342 | 340 |
| 343 if (enable_wifi_display && proprietary_codecs) { | 341 if (enable_wifi_display && proprietary_codecs) { |
| 344 sources += [ | 342 sources += [ |
| 345 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 343 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 346 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 344 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 347 ] | 345 ] |
| 348 } | 346 } |
| 349 } | 347 } |
| OLD | NEW |