| 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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 "data_buffer_unittest.cc", | 325 "data_buffer_unittest.cc", |
| 326 "decoder_buffer_queue_unittest.cc", | 326 "decoder_buffer_queue_unittest.cc", |
| 327 "decoder_buffer_unittest.cc", | 327 "decoder_buffer_unittest.cc", |
| 328 "djb2_unittest.cc", | 328 "djb2_unittest.cc", |
| 329 "gmock_callback_support_unittest.cc", | 329 "gmock_callback_support_unittest.cc", |
| 330 "key_systems_unittest.cc", | 330 "key_systems_unittest.cc", |
| 331 "multi_channel_resampler_unittest.cc", | 331 "multi_channel_resampler_unittest.cc", |
| 332 "pipeline_unittest.cc", | 332 "pipeline_unittest.cc", |
| 333 "ranges_unittest.cc", | 333 "ranges_unittest.cc", |
| 334 "run_all_unittests.cc", | 334 "run_all_unittests.cc", |
| 335 "scoped_histogram_timer_unittest.cc", | |
| 336 "serial_runner_unittest.cc", | 335 "serial_runner_unittest.cc", |
| 337 "seekable_buffer_unittest.cc", | 336 "seekable_buffer_unittest.cc", |
| 338 "sinc_resampler_unittest.cc", | 337 "sinc_resampler_unittest.cc", |
| 339 "stream_parser_unittest.cc", | 338 "stream_parser_unittest.cc", |
| 340 "text_ranges_unittest.cc", | 339 "text_ranges_unittest.cc", |
| 341 "text_renderer_unittest.cc", | 340 "text_renderer_unittest.cc", |
| 342 "user_input_monitor_unittest.cc", | 341 "user_input_monitor_unittest.cc", |
| 343 "vector_math_testing.h", | 342 "vector_math_testing.h", |
| 344 "vector_math_unittest.cc", | 343 "vector_math_unittest.cc", |
| 345 "video_frame_unittest.cc", | 344 "video_frame_unittest.cc", |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 if (is_posix) { | 467 if (is_posix) { |
| 469 yasm_flags += [ "-DELF" ] | 468 yasm_flags += [ "-DELF" ] |
| 470 if (cpu_arch == "x64") { | 469 if (cpu_arch == "x64") { |
| 471 # TODO(ajwong): Why isn't this true in mac? | 470 # TODO(ajwong): Why isn't this true in mac? |
| 472 yasm_flags += [ "-DPIC" ] | 471 yasm_flags += [ "-DPIC" ] |
| 473 } | 472 } |
| 474 } | 473 } |
| 475 } | 474 } |
| 476 } | 475 } |
| 477 } | 476 } |
| OLD | NEW |