| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "media_client.h", | 111 "media_client.h", |
| 112 "media_keys.cc", | 112 "media_keys.cc", |
| 113 "media_keys.h", | 113 "media_keys.h", |
| 114 "media_log.cc", | 114 "media_log.cc", |
| 115 "media_log.h", | 115 "media_log.h", |
| 116 "media_log_event.h", | 116 "media_log_event.h", |
| 117 "media_permission.cc", | 117 "media_permission.cc", |
| 118 "media_permission.h", | 118 "media_permission.h", |
| 119 "media_switches.cc", | 119 "media_switches.cc", |
| 120 "media_switches.h", | 120 "media_switches.h", |
| 121 "moving_average.cc", |
| 122 "moving_average.h", |
| 121 "multi_channel_resampler.cc", | 123 "multi_channel_resampler.cc", |
| 122 "multi_channel_resampler.h", | 124 "multi_channel_resampler.h", |
| 123 "pipeline.cc", | 125 "pipeline.cc", |
| 124 "pipeline.h", | 126 "pipeline.h", |
| 125 "pipeline_status.h", | 127 "pipeline_status.h", |
| 126 "player_tracker.cc", | 128 "player_tracker.cc", |
| 127 "player_tracker.h", | 129 "player_tracker.h", |
| 128 "ranges.cc", | 130 "ranges.cc", |
| 129 "ranges.h", | 131 "ranges.h", |
| 130 "renderer.cc", | 132 "renderer.cc", |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 "callback_holder.h", | 349 "callback_holder.h", |
| 348 "callback_holder_unittest.cc", | 350 "callback_holder_unittest.cc", |
| 349 "channel_mixer_unittest.cc", | 351 "channel_mixer_unittest.cc", |
| 350 "channel_mixing_matrix_unittest.cc", | 352 "channel_mixing_matrix_unittest.cc", |
| 351 "data_buffer_unittest.cc", | 353 "data_buffer_unittest.cc", |
| 352 "decoder_buffer_queue_unittest.cc", | 354 "decoder_buffer_queue_unittest.cc", |
| 353 "decoder_buffer_unittest.cc", | 355 "decoder_buffer_unittest.cc", |
| 354 "djb2_unittest.cc", | 356 "djb2_unittest.cc", |
| 355 "gmock_callback_support_unittest.cc", | 357 "gmock_callback_support_unittest.cc", |
| 356 "key_systems_unittest.cc", | 358 "key_systems_unittest.cc", |
| 359 "moving_average_unittest.cc", |
| 357 "multi_channel_resampler_unittest.cc", | 360 "multi_channel_resampler_unittest.cc", |
| 358 "pipeline_unittest.cc", | 361 "pipeline_unittest.cc", |
| 359 "ranges_unittest.cc", | 362 "ranges_unittest.cc", |
| 360 "run_all_unittests.cc", | 363 "run_all_unittests.cc", |
| 361 "seekable_buffer_unittest.cc", | 364 "seekable_buffer_unittest.cc", |
| 362 "serial_runner_unittest.cc", | 365 "serial_runner_unittest.cc", |
| 363 "sinc_resampler_unittest.cc", | 366 "sinc_resampler_unittest.cc", |
| 364 "stream_parser_unittest.cc", | 367 "stream_parser_unittest.cc", |
| 365 "text_ranges_unittest.cc", | 368 "text_ranges_unittest.cc", |
| 366 "text_renderer_unittest.cc", | 369 "text_renderer_unittest.cc", |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 if (is_posix) { | 500 if (is_posix) { |
| 498 yasm_flags += [ "-DELF" ] | 501 yasm_flags += [ "-DELF" ] |
| 499 if (current_cpu == "x64") { | 502 if (current_cpu == "x64") { |
| 500 # TODO(ajwong): Why isn't this true in mac? | 503 # TODO(ajwong): Why isn't this true in mac? |
| 501 yasm_flags += [ "-DPIC" ] | 504 yasm_flags += [ "-DPIC" ] |
| 502 } | 505 } |
| 503 } | 506 } |
| 504 } | 507 } |
| 505 } | 508 } |
| 506 } | 509 } |
| OLD | NEW |