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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 "bit_reader.h", | 52 "bit_reader.h", |
53 "bit_reader_core.cc", | 53 "bit_reader_core.cc", |
54 "bit_reader_core.h", | 54 "bit_reader_core.h", |
55 "bitstream_buffer.h", | 55 "bitstream_buffer.h", |
56 "buffering_state.h", | 56 "buffering_state.h", |
57 "buffers.h", | 57 "buffers.h", |
58 "byte_queue.cc", | 58 "byte_queue.cc", |
59 "byte_queue.h", | 59 "byte_queue.h", |
60 "cdm_callback_promise.cc", | 60 "cdm_callback_promise.cc", |
61 "cdm_callback_promise.h", | 61 "cdm_callback_promise.h", |
| 62 'cdm_context.cc', |
| 63 'cdm_context.h', |
62 "cdm_factory.cc", | 64 "cdm_factory.cc", |
63 "cdm_factory.h", | 65 "cdm_factory.h", |
64 "cdm_promise.cc", | 66 "cdm_promise.cc", |
65 "cdm_promise.h", | 67 "cdm_promise.h", |
66 "channel_mixer.cc", | 68 "channel_mixer.cc", |
67 "channel_mixer.h", | 69 "channel_mixer.h", |
68 "channel_mixing_matrix.cc", | 70 "channel_mixing_matrix.cc", |
69 "channel_mixing_matrix.h", | 71 "channel_mixing_matrix.h", |
70 "clock.h", | 72 "clock.h", |
71 "data_buffer.cc", | 73 "data_buffer.cc", |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 if (is_posix) { | 455 if (is_posix) { |
454 yasm_flags += [ "-DELF" ] | 456 yasm_flags += [ "-DELF" ] |
455 if (cpu_arch == "x64") { | 457 if (cpu_arch == "x64") { |
456 # TODO(ajwong): Why isn't this true in mac? | 458 # TODO(ajwong): Why isn't this true in mac? |
457 yasm_flags += [ "-DPIC" ] | 459 yasm_flags += [ "-DPIC" ] |
458 } | 460 } |
459 } | 461 } |
460 } | 462 } |
461 } | 463 } |
462 } | 464 } |
OLD | NEW |