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/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 | 10 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 "bit_reader.h", | 51 "bit_reader.h", |
52 "bit_reader_core.cc", | 52 "bit_reader_core.cc", |
53 "bit_reader_core.h", | 53 "bit_reader_core.h", |
54 "bitstream_buffer.h", | 54 "bitstream_buffer.h", |
55 "buffering_state.h", | 55 "buffering_state.h", |
56 "buffers.h", | 56 "buffers.h", |
57 "byte_queue.cc", | 57 "byte_queue.cc", |
58 "byte_queue.h", | 58 "byte_queue.h", |
59 "cdm_callback_promise.cc", | 59 "cdm_callback_promise.cc", |
60 "cdm_callback_promise.h", | 60 "cdm_callback_promise.h", |
| 61 "cdm_factory.cc", |
| 62 "cdm_factory.h", |
61 "cdm_promise.cc", | 63 "cdm_promise.cc", |
62 "cdm_promise.h", | 64 "cdm_promise.h", |
63 "channel_mixer.cc", | 65 "channel_mixer.cc", |
64 "channel_mixer.h", | 66 "channel_mixer.h", |
65 "clock.h", | 67 "clock.h", |
66 "data_buffer.cc", | 68 "data_buffer.cc", |
67 "data_buffer.h", | 69 "data_buffer.h", |
68 "data_source.cc", | 70 "data_source.cc", |
69 "data_source.h", | 71 "data_source.h", |
70 "decoder_buffer.cc", | 72 "decoder_buffer.cc", |
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 if (is_posix) { | 438 if (is_posix) { |
437 yasm_flags += [ "-DELF" ] | 439 yasm_flags += [ "-DELF" ] |
438 if (cpu_arch == "x64") { | 440 if (cpu_arch == "x64") { |
439 # TODO(ajwong): Why isn't this true in mac? | 441 # TODO(ajwong): Why isn't this true in mac? |
440 yasm_flags += [ "-DPIC" ] | 442 yasm_flags += [ "-DPIC" ] |
441 } | 443 } |
442 } | 444 } |
443 } | 445 } |
444 } | 446 } |
445 } | 447 } |
OLD | NEW |