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

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

Issue 1422643002: Pass DecryptConfig parameters over IPC and use it in AVDA. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed MediaCodec.CodecException that was added only at level 21 (Android L) Created 5 years, 1 month 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
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "audio_shifter.h", 49 "audio_shifter.h",
50 "audio_splicer.cc", 50 "audio_splicer.cc",
51 "audio_splicer.h", 51 "audio_splicer.h",
52 "audio_timestamp_helper.cc", 52 "audio_timestamp_helper.cc",
53 "audio_timestamp_helper.h", 53 "audio_timestamp_helper.h",
54 "bind_to_current_loop.h", 54 "bind_to_current_loop.h",
55 "bit_reader.cc", 55 "bit_reader.cc",
56 "bit_reader.h", 56 "bit_reader.h",
57 "bit_reader_core.cc", 57 "bit_reader_core.cc",
58 "bit_reader_core.h", 58 "bit_reader_core.h",
59 "bitstream_buffer.cc",
59 "bitstream_buffer.h", 60 "bitstream_buffer.h",
60 "buffering_state.h", 61 "buffering_state.h",
61 "byte_queue.cc", 62 "byte_queue.cc",
62 "byte_queue.h", 63 "byte_queue.h",
63 "cdm_callback_promise.cc", 64 "cdm_callback_promise.cc",
64 "cdm_callback_promise.h", 65 "cdm_callback_promise.h",
65 "cdm_config.h", 66 "cdm_config.h",
66 "cdm_context.cc", 67 "cdm_context.cc",
67 "cdm_context.h", 68 "cdm_context.h",
68 "cdm_factory.cc", 69 "cdm_factory.cc",
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 if (is_posix) { 541 if (is_posix) {
541 yasm_flags += [ "-DELF" ] 542 yasm_flags += [ "-DELF" ]
542 if (current_cpu == "x64") { 543 if (current_cpu == "x64") {
543 # TODO(ajwong): Why isn't this true in mac? 544 # TODO(ajwong): Why isn't this true in mac?
544 yasm_flags += [ "-DPIC" ] 545 yasm_flags += [ "-DPIC" ]
545 } 546 }
546 } 547 }
547 } 548 }
548 } 549 }
549 } 550 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698