| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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.h", | 59 "bitstream_buffer.h", |
| 60 "buffering_state.h", | 60 "buffering_state.h", |
| 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_context.cc", | 67 "cdm_context.cc", |
| 67 "cdm_context.h", | 68 "cdm_context.h", |
| 68 "cdm_factory.cc", | 69 "cdm_factory.cc", |
| 69 "cdm_factory.h", | 70 "cdm_factory.h", |
| 70 "cdm_key_information.cc", | 71 "cdm_key_information.cc", |
| 71 "cdm_key_information.h", | 72 "cdm_key_information.h", |
| 72 "cdm_promise.cc", | 73 "cdm_promise.cc", |
| 73 "cdm_promise.h", | 74 "cdm_promise.h", |
| 74 "cdm_promise_adapter.cc", | 75 "cdm_promise_adapter.cc", |
| 75 "cdm_promise_adapter.h", | 76 "cdm_promise_adapter.h", |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 if (is_posix) { | 532 if (is_posix) { |
| 532 yasm_flags += [ "-DELF" ] | 533 yasm_flags += [ "-DELF" ] |
| 533 if (current_cpu == "x64") { | 534 if (current_cpu == "x64") { |
| 534 # TODO(ajwong): Why isn't this true in mac? | 535 # TODO(ajwong): Why isn't this true in mac? |
| 535 yasm_flags += [ "-DPIC" ] | 536 yasm_flags += [ "-DPIC" ] |
| 536 } | 537 } |
| 537 } | 538 } |
| 538 } | 539 } |
| 539 } | 540 } |
| 540 } | 541 } |
| OLD | NEW |