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/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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "buffers.h", | 61 "buffers.h", |
62 "byte_queue.cc", | 62 "byte_queue.cc", |
63 "byte_queue.h", | 63 "byte_queue.h", |
64 "cdm_callback_promise.cc", | 64 "cdm_callback_promise.cc", |
65 "cdm_callback_promise.h", | 65 "cdm_callback_promise.h", |
66 "cdm_config.h", | 66 "cdm_config.h", |
67 "cdm_context.cc", | 67 "cdm_context.cc", |
68 "cdm_context.h", | 68 "cdm_context.h", |
69 "cdm_factory.cc", | 69 "cdm_factory.cc", |
70 "cdm_factory.h", | 70 "cdm_factory.h", |
| 71 "cdm_initialized_promise.cc", |
| 72 "cdm_initialized_promise.h", |
71 "cdm_key_information.cc", | 73 "cdm_key_information.cc", |
72 "cdm_key_information.h", | 74 "cdm_key_information.h", |
73 "cdm_promise.cc", | 75 "cdm_promise.cc", |
74 "cdm_promise.h", | 76 "cdm_promise.h", |
75 "cdm_promise_adapter.cc", | 77 "cdm_promise_adapter.cc", |
76 "cdm_promise_adapter.h", | 78 "cdm_promise_adapter.h", |
77 "channel_mixer.cc", | 79 "channel_mixer.cc", |
78 "channel_mixer.h", | 80 "channel_mixer.h", |
79 "channel_mixing_matrix.cc", | 81 "channel_mixing_matrix.cc", |
80 "channel_mixing_matrix.h", | 82 "channel_mixing_matrix.h", |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 if (is_posix) { | 515 if (is_posix) { |
514 yasm_flags += [ "-DELF" ] | 516 yasm_flags += [ "-DELF" ] |
515 if (current_cpu == "x64") { | 517 if (current_cpu == "x64") { |
516 # TODO(ajwong): Why isn't this true in mac? | 518 # TODO(ajwong): Why isn't this true in mac? |
517 yasm_flags += [ "-DPIC" ] | 519 yasm_flags += [ "-DPIC" ] |
518 } | 520 } |
519 } | 521 } |
520 } | 522 } |
521 } | 523 } |
522 } | 524 } |
OLD | NEW |