| 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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/common/common.gni") | 7 import("//content/common/common.gni") |
| 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 9 if (is_mac) { | 9 if (is_mac) { |
| 10 import("//build/config/mac/mac_sdk.gni") | 10 import("//build/config/mac/mac_sdk.gni") |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 "pepper_renderer_instance_data.h", | 328 "pepper_renderer_instance_data.h", |
| 329 "plugin_list.cc", | 329 "plugin_list.cc", |
| 330 "plugin_list.h", | 330 "plugin_list.h", |
| 331 "plugin_list_posix.cc", | 331 "plugin_list_posix.cc", |
| 332 "sandbox_util.cc", | 332 "sandbox_util.cc", |
| 333 ] | 333 ] |
| 334 } | 334 } |
| 335 | 335 |
| 336 if (is_android) { | 336 if (is_android) { |
| 337 sources += [ | 337 sources += [ |
| 338 "gpu/media/android_copying_backing_strategy.cc", |
| 339 "gpu/media/android_copying_backing_strategy.h", |
| 338 "gpu/media/android_video_decode_accelerator.cc", | 340 "gpu/media/android_video_decode_accelerator.cc", |
| 339 "gpu/media/android_video_decode_accelerator.h", | 341 "gpu/media/android_video_decode_accelerator.h", |
| 342 "gpu/media/avda_return_on_failure.h", |
| 340 ] | 343 ] |
| 341 | 344 |
| 342 if (enable_webrtc) { | 345 if (enable_webrtc) { |
| 343 deps += [ "//third_party/libyuv" ] | 346 deps += [ "//third_party/libyuv" ] |
| 344 } | 347 } |
| 345 } | 348 } |
| 346 | 349 |
| 347 if (is_chromeos) { | 350 if (is_chromeos) { |
| 348 sources += [ | 351 sources += [ |
| 349 "gpu/media/accelerated_video_decoder.h", | 352 "gpu/media/accelerated_video_decoder.h", |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 | 509 |
| 507 import_dirs = [ "//mojo/services" ] | 510 import_dirs = [ "//mojo/services" ] |
| 508 | 511 |
| 509 deps = [ | 512 deps = [ |
| 510 "//content/public/common:mojo_bindings", | 513 "//content/public/common:mojo_bindings", |
| 511 "//mojo/application/public/interfaces", | 514 "//mojo/application/public/interfaces", |
| 512 "//skia/public/interfaces", | 515 "//skia/public/interfaces", |
| 513 "//ui/mojo/geometry:interfaces", | 516 "//ui/mojo/geometry:interfaces", |
| 514 ] | 517 ] |
| 515 } | 518 } |
| OLD | NEW |