Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(222)

Side by Side Diff: media/base/BUILD.gn

Issue 1964963002: media: Fix gn deps on media/ targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add bug reference + rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 configs += [ ":base_config" ] 261 configs += [ ":base_config" ]
262 262
263 if (media_use_ffmpeg) { 263 if (media_use_ffmpeg) {
264 if (!is_android) { 264 if (!is_android) {
265 sources += [ 265 sources += [
266 "audio_video_metadata_extractor.cc", 266 "audio_video_metadata_extractor.cc",
267 "audio_video_metadata_extractor.h", 267 "audio_video_metadata_extractor.h",
268 "media_file_checker.cc", 268 "media_file_checker.cc",
269 "media_file_checker.h", 269 "media_file_checker.h",
270 ] 270 ]
271 deps += [ "//media:filters_common" ]
271 } 272 }
272 273
273 deps += [ "//third_party/ffmpeg" ] 274 deps += [ "//third_party/ffmpeg" ]
274 } 275 }
275 276
276 if (is_android) { 277 if (is_android) {
277 public_deps = [ 278 public_deps = [
278 "//media/base/android", 279 "//media/base/android",
279 "//media/base/android:media_jni_headers", 280 "//media/base/android:media_jni_headers",
280 ] 281 ]
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 601
601 fuzzer_test("media_container_names_fuzzer") { 602 fuzzer_test("media_container_names_fuzzer") {
602 sources = [ 603 sources = [
603 "container_names_fuzzertest.cc", 604 "container_names_fuzzertest.cc",
604 ] 605 ]
605 deps = [ 606 deps = [
606 "//base", 607 "//base",
607 "//media", 608 "//media",
608 ] 609 ]
609 } 610 }
OLDNEW
« no previous file with comments | « media/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698