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/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 ] | 263 ] |
264 } | 264 } |
265 | 265 |
266 deps += [ "//third_party/ffmpeg" ] | 266 deps += [ "//third_party/ffmpeg" ] |
267 } | 267 } |
268 | 268 |
269 if (is_android) { | 269 if (is_android) { |
270 public_deps = [ | 270 public_deps = [ |
271 "//media/base/android", | 271 "//media/base/android", |
272 "//media/base/android:media_jni_headers", | 272 "//media/base/android:media_jni_headers", |
| 273 "//media/base/android:screen_capture_jni_headers", |
273 ] | 274 ] |
274 allow_circular_includes_from += [ "//media/base/android" ] | 275 allow_circular_includes_from += [ "//media/base/android" ] |
275 } | 276 } |
276 | 277 |
277 if (is_linux && use_x11) { | 278 if (is_linux && use_x11) { |
278 configs += [ | 279 configs += [ |
279 "//build/config/linux:x11", | 280 "//build/config/linux:x11", |
280 "//build/config/linux:xext", | 281 "//build/config/linux:xext", |
281 | 282 |
282 # TODO(ajwong): Why does xent get a separate thing in //build/config/linux
:BUILD.gn | 283 # TODO(ajwong): Why does xent get a separate thing in //build/config/linux
:BUILD.gn |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
584 | 585 |
585 fuzzer_test("media_container_names_fuzzer") { | 586 fuzzer_test("media_container_names_fuzzer") { |
586 sources = [ | 587 sources = [ |
587 "container_names_fuzzertest.cc", | 588 "container_names_fuzzertest.cc", |
588 ] | 589 ] |
589 deps = [ | 590 deps = [ |
590 "//base", | 591 "//base", |
591 "//media", | 592 "//media", |
592 ] | 593 ] |
593 } | 594 } |
OLD | NEW |