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

Side by Side Diff: media/BUILD.gn

Issue 2757463004: Restrict use of GN target //media/base/android:android (Closed)
Patch Set: changes Created 3 years, 9 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 | « content/shell/android/BUILD.gn ('k') | media/base/android/BUILD.gn » ('j') | 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/arm.gni") 7 import("//build/config/arm.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 sources += [ 382 sources += [
383 "filters/android/media_codec_audio_decoder.cc", 383 "filters/android/media_codec_audio_decoder.cc",
384 "filters/android/media_codec_audio_decoder.h", 384 "filters/android/media_codec_audio_decoder.h",
385 ] 385 ]
386 sources -= [ 386 sources -= [
387 "filters/decrypting_audio_decoder.cc", 387 "filters/decrypting_audio_decoder.cc",
388 "filters/decrypting_audio_decoder.h", 388 "filters/decrypting_audio_decoder.h",
389 "filters/decrypting_video_decoder.cc", 389 "filters/decrypting_video_decoder.cc",
390 "filters/decrypting_video_decoder.h", 390 "filters/decrypting_video_decoder.h",
391 ] 391 ]
392 deps += [
393 "//media/base/android",
394 "//media/base/android:media_jni_headers",
395 ]
396 allow_circular_includes_from = [ "//media/base/android" ]
397 } 392 }
398 393
399 if (current_cpu != "arm" && is_chromeos) { 394 if (current_cpu != "arm" && is_chromeos) {
400 sources += [ 395 sources += [
401 "filters/h264_bitstream_buffer.cc", 396 "filters/h264_bitstream_buffer.cc",
402 "filters/h264_bitstream_buffer.h", 397 "filters/h264_bitstream_buffer.h",
403 ] 398 ]
404 } 399 }
405 400
406 if (is_mac) { 401 if (is_mac) {
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
979 fuzzer_test("media_mp4_avcc_parser_fuzzer") { 974 fuzzer_test("media_mp4_avcc_parser_fuzzer") {
980 sources = [ 975 sources = [
981 "formats/mp4/mp4_avcc_parser_fuzzer.cc", 976 "formats/mp4/mp4_avcc_parser_fuzzer.cc",
982 ] 977 ]
983 deps = [ 978 deps = [
984 ":media", 979 ":media",
985 "//base", 980 "//base",
986 ] 981 ]
987 } 982 }
988 } 983 }
OLDNEW
« no previous file with comments | « content/shell/android/BUILD.gn ('k') | media/base/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698