Chromium Code Reviews| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 329 "pepper_renderer_instance_data.cc", | 329 "pepper_renderer_instance_data.cc", |
| 330 "pepper_renderer_instance_data.h", | 330 "pepper_renderer_instance_data.h", |
| 331 "plugin_list.cc", | 331 "plugin_list.cc", |
| 332 "plugin_list.h", | 332 "plugin_list.h", |
| 333 "plugin_list_posix.cc", | 333 "plugin_list_posix.cc", |
| 334 "sandbox_util.cc", | 334 "sandbox_util.cc", |
| 335 ] | 335 ] |
| 336 } | 336 } |
| 337 | 337 |
| 338 if (is_android) { | 338 if (is_android) { |
| 339 sources += [ | 339 sources += [ |
|
liberato (no reviews please)
2015/10/21 21:20:19
i think this is missing common/gpu/media/avda_retu
xhwang
2015/10/21 21:23:09
On line 348?
liberato (no reviews please)
2015/10/21 21:24:42
that might be the one, yes. sorry!
| |
| 340 "gpu/media/android_copying_backing_strategy.cc", | 340 "gpu/media/android_copying_backing_strategy.cc", |
| 341 "gpu/media/android_copying_backing_strategy.h", | 341 "gpu/media/android_copying_backing_strategy.h", |
| 342 "gpu/media/android_deferred_rendering_backing_strategy.cc", | |
| 343 "gpu/media/android_deferred_rendering_backing_strategy.h", | |
| 342 "gpu/media/android_video_decode_accelerator.cc", | 344 "gpu/media/android_video_decode_accelerator.cc", |
| 343 "gpu/media/android_video_decode_accelerator.h", | 345 "gpu/media/android_video_decode_accelerator.h", |
| 346 "gpu/media/avda_codec_image.cc", | |
| 347 "gpu/media/avda_codec_image.h", | |
| 344 "gpu/media/avda_return_on_failure.h", | 348 "gpu/media/avda_return_on_failure.h", |
| 349 "gpu/media/avda_shared_state.h", | |
| 350 "gpu/media/avda_state_provider.h", | |
| 345 ] | 351 ] |
| 346 | 352 |
| 347 if (enable_webrtc) { | 353 if (enable_webrtc) { |
| 348 deps += [ "//third_party/libyuv" ] | 354 deps += [ "//third_party/libyuv" ] |
| 349 } | 355 } |
| 350 } | 356 } |
| 351 | 357 |
| 352 if (is_chromeos) { | 358 if (is_chromeos) { |
| 353 sources += [ | 359 sources += [ |
| 354 "gpu/media/accelerated_video_decoder.h", | 360 "gpu/media/accelerated_video_decoder.h", |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 515 | 521 |
| 516 import_dirs = [ "//mojo/services" ] | 522 import_dirs = [ "//mojo/services" ] |
| 517 | 523 |
| 518 deps = [ | 524 deps = [ |
| 519 "//content/public/common:mojo_bindings", | 525 "//content/public/common:mojo_bindings", |
| 520 "//mojo/application/public/interfaces", | 526 "//mojo/application/public/interfaces", |
| 521 "//skia/public/interfaces", | 527 "//skia/public/interfaces", |
| 522 "//ui/mojo/geometry:interfaces", | 528 "//ui/mojo/geometry:interfaces", |
| 523 ] | 529 ] |
| 524 } | 530 } |
| OLD | NEW |