| 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("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 | 9 |
| 10 source_set("common") { | 10 source_set("common") { |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 "gpu/media/v4l2_video_encode_accelerator.h", | 217 "gpu/media/v4l2_video_encode_accelerator.h", |
| 218 ] | 218 ] |
| 219 libs = [ "EGL", "GLESv2" ] | 219 libs = [ "EGL", "GLESv2" ] |
| 220 } else { # !arm | 220 } else { # !arm |
| 221 sources += [ | 221 sources += [ |
| 222 "gpu/media/h264_dpb.cc", | 222 "gpu/media/h264_dpb.cc", |
| 223 "gpu/media/h264_dpb.h", | 223 "gpu/media/h264_dpb.h", |
| 224 "gpu/media/va_surface.h", | 224 "gpu/media/va_surface.h", |
| 225 "gpu/media/vaapi_h264_decoder.cc", | 225 "gpu/media/vaapi_h264_decoder.cc", |
| 226 "gpu/media/vaapi_h264_decoder.h", | 226 "gpu/media/vaapi_h264_decoder.h", |
| 227 "gpu/media/vaapi_picture_provider.cc", |
| 228 "gpu/media/vaapi_picture_provider.h", |
| 227 "gpu/media/vaapi_video_decode_accelerator.cc", | 229 "gpu/media/vaapi_video_decode_accelerator.cc", |
| 228 "gpu/media/vaapi_video_decode_accelerator.h", | 230 "gpu/media/vaapi_video_decode_accelerator.h", |
| 229 "gpu/media/vaapi_wrapper.cc", | 231 "gpu/media/vaapi_wrapper.cc", |
| 230 "gpu/media/vaapi_wrapper.h", | 232 "gpu/media/vaapi_wrapper.h", |
| 231 ] | 233 ] |
| 232 assert(false, "Implement generate_stubs for libva") | 234 assert(false, "Implement generate_stubs for libva") |
| 233 } | 235 } |
| 234 } | 236 } |
| 235 | 237 |
| 236 if (is_win) { | 238 if (is_win) { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 | 282 |
| 281 mojom("mojo_bindings") { | 283 mojom("mojo_bindings") { |
| 282 sources = [ | 284 sources = [ |
| 283 "render_frame_setup.mojom", | 285 "render_frame_setup.mojom", |
| 284 ] | 286 ] |
| 285 | 287 |
| 286 deps = [ | 288 deps = [ |
| 287 "//mojo/public/interfaces/application:application", | 289 "//mojo/public/interfaces/application:application", |
| 288 ] | 290 ] |
| 289 } | 291 } |
| OLD | NEW |