| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 "gpu/media/v4l2_video_encode_accelerator.h", | 210 "gpu/media/v4l2_video_encode_accelerator.h", |
| 211 ] | 211 ] |
| 212 libs = [ "EGL", "GLESv2" ] | 212 libs = [ "EGL", "GLESv2" ] |
| 213 } else { # !arm | 213 } else { # !arm |
| 214 sources += [ | 214 sources += [ |
| 215 "gpu/media/h264_dpb.cc", | 215 "gpu/media/h264_dpb.cc", |
| 216 "gpu/media/h264_dpb.h", | 216 "gpu/media/h264_dpb.h", |
| 217 "gpu/media/va_surface.h", | 217 "gpu/media/va_surface.h", |
| 218 "gpu/media/vaapi_h264_decoder.cc", | 218 "gpu/media/vaapi_h264_decoder.cc", |
| 219 "gpu/media/vaapi_h264_decoder.h", | 219 "gpu/media/vaapi_h264_decoder.h", |
| 220 "gpu/media/vaapi_picture_provider.cc", |
| 221 "gpu/media/vaapi_picture_provider.h", |
| 220 "gpu/media/vaapi_video_decode_accelerator.cc", | 222 "gpu/media/vaapi_video_decode_accelerator.cc", |
| 221 "gpu/media/vaapi_video_decode_accelerator.h", | 223 "gpu/media/vaapi_video_decode_accelerator.h", |
| 222 "gpu/media/vaapi_wrapper.cc", | 224 "gpu/media/vaapi_wrapper.cc", |
| 223 "gpu/media/vaapi_wrapper.h", | 225 "gpu/media/vaapi_wrapper.h", |
| 224 ] | 226 ] |
| 225 assert(false, "Implement generate_stubs for libva") | 227 assert(false, "Implement generate_stubs for libva") |
| 226 } | 228 } |
| 227 } | 229 } |
| 228 | 230 |
| 229 if (is_win) { | 231 if (is_win) { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 | 275 |
| 274 mojom("mojo_bindings") { | 276 mojom("mojo_bindings") { |
| 275 sources = [ | 277 sources = [ |
| 276 "render_frame_setup.mojom", | 278 "render_frame_setup.mojom", |
| 277 ] | 279 ] |
| 278 | 280 |
| 279 deps = [ | 281 deps = [ |
| 280 "//mojo/public/interfaces/application:application", | 282 "//mojo/public/interfaces/application:application", |
| 281 ] | 283 ] |
| 282 } | 284 } |
| OLD | NEW |