| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 112     "media_client.h", | 112     "media_client.h", | 
| 113     "media_keys.cc", | 113     "media_keys.cc", | 
| 114     "media_keys.h", | 114     "media_keys.h", | 
| 115     "media_log.cc", | 115     "media_log.cc", | 
| 116     "media_log.h", | 116     "media_log.h", | 
| 117     "media_log_event.h", | 117     "media_log_event.h", | 
| 118     "media_permission.cc", | 118     "media_permission.cc", | 
| 119     "media_permission.h", | 119     "media_permission.h", | 
| 120     "media_switches.cc", | 120     "media_switches.cc", | 
| 121     "media_switches.h", | 121     "media_switches.h", | 
|  | 122     "moving_average.cc", | 
|  | 123     "moving_average.h", | 
| 122     "multi_channel_resampler.cc", | 124     "multi_channel_resampler.cc", | 
| 123     "multi_channel_resampler.h", | 125     "multi_channel_resampler.h", | 
| 124     "null_video_sink.cc", | 126     "null_video_sink.cc", | 
| 125     "null_video_sink.h", | 127     "null_video_sink.h", | 
| 126     "pipeline.cc", | 128     "pipeline.cc", | 
| 127     "pipeline.h", | 129     "pipeline.h", | 
| 128     "pipeline_status.h", | 130     "pipeline_status.h", | 
| 129     "player_tracker.cc", | 131     "player_tracker.cc", | 
| 130     "player_tracker.h", | 132     "player_tracker.h", | 
| 131     "ranges.cc", | 133     "ranges.cc", | 
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 368     "callback_holder.h", | 370     "callback_holder.h", | 
| 369     "callback_holder_unittest.cc", | 371     "callback_holder_unittest.cc", | 
| 370     "channel_mixer_unittest.cc", | 372     "channel_mixer_unittest.cc", | 
| 371     "channel_mixing_matrix_unittest.cc", | 373     "channel_mixing_matrix_unittest.cc", | 
| 372     "data_buffer_unittest.cc", | 374     "data_buffer_unittest.cc", | 
| 373     "decoder_buffer_queue_unittest.cc", | 375     "decoder_buffer_queue_unittest.cc", | 
| 374     "decoder_buffer_unittest.cc", | 376     "decoder_buffer_unittest.cc", | 
| 375     "djb2_unittest.cc", | 377     "djb2_unittest.cc", | 
| 376     "gmock_callback_support_unittest.cc", | 378     "gmock_callback_support_unittest.cc", | 
| 377     "key_systems_unittest.cc", | 379     "key_systems_unittest.cc", | 
|  | 380     "moving_average_unittest.cc", | 
| 378     "multi_channel_resampler_unittest.cc", | 381     "multi_channel_resampler_unittest.cc", | 
| 379     "null_video_sink_unittest.cc", | 382     "null_video_sink_unittest.cc", | 
| 380     "pipeline_unittest.cc", | 383     "pipeline_unittest.cc", | 
| 381     "ranges_unittest.cc", | 384     "ranges_unittest.cc", | 
| 382     "run_all_unittests.cc", | 385     "run_all_unittests.cc", | 
| 383     "seekable_buffer_unittest.cc", | 386     "seekable_buffer_unittest.cc", | 
| 384     "serial_runner_unittest.cc", | 387     "serial_runner_unittest.cc", | 
| 385     "sinc_resampler_unittest.cc", | 388     "sinc_resampler_unittest.cc", | 
| 386     "stream_parser_unittest.cc", | 389     "stream_parser_unittest.cc", | 
| 387     "text_ranges_unittest.cc", | 390     "text_ranges_unittest.cc", | 
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 522       if (is_posix) { | 525       if (is_posix) { | 
| 523         yasm_flags += [ "-DELF" ] | 526         yasm_flags += [ "-DELF" ] | 
| 524         if (current_cpu == "x64") { | 527         if (current_cpu == "x64") { | 
| 525           # TODO(ajwong): Why isn't this true in mac? | 528           # TODO(ajwong): Why isn't this true in mac? | 
| 526           yasm_flags += [ "-DPIC" ] | 529           yasm_flags += [ "-DPIC" ] | 
| 527         } | 530         } | 
| 528       } | 531       } | 
| 529     } | 532     } | 
| 530   } | 533   } | 
| 531 } | 534 } | 
| OLD | NEW | 
|---|