| 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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 "seekable_buffer_unittest.cc", | 402 "seekable_buffer_unittest.cc", |
| 403 "serial_runner_unittest.cc", | 403 "serial_runner_unittest.cc", |
| 404 "sinc_resampler_unittest.cc", | 404 "sinc_resampler_unittest.cc", |
| 405 "stream_parser_unittest.cc", | 405 "stream_parser_unittest.cc", |
| 406 "text_ranges_unittest.cc", | 406 "text_ranges_unittest.cc", |
| 407 "text_renderer_unittest.cc", | 407 "text_renderer_unittest.cc", |
| 408 "time_delta_interpolator_unittest.cc", | 408 "time_delta_interpolator_unittest.cc", |
| 409 "user_input_monitor_unittest.cc", | 409 "user_input_monitor_unittest.cc", |
| 410 "vector_math_testing.h", | 410 "vector_math_testing.h", |
| 411 "vector_math_unittest.cc", | 411 "vector_math_unittest.cc", |
| 412 "video_capture_types_unittest.cc", |
| 412 "video_frame_pool_unittest.cc", | 413 "video_frame_pool_unittest.cc", |
| 413 "video_frame_unittest.cc", | 414 "video_frame_unittest.cc", |
| 414 "video_util_unittest.cc", | 415 "video_util_unittest.cc", |
| 415 "wall_clock_time_source_unittest.cc", | 416 "wall_clock_time_source_unittest.cc", |
| 416 "yuv_convert_unittest.cc", | 417 "yuv_convert_unittest.cc", |
| 417 ] | 418 ] |
| 418 configs += [ | 419 configs += [ |
| 419 "//build/config/compiler:no_size_t_to_int_warning", | 420 "//build/config/compiler:no_size_t_to_int_warning", |
| 420 "//media:media_config", | 421 "//media:media_config", |
| 421 ] | 422 ] |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 if (is_posix) { | 528 if (is_posix) { |
| 528 yasm_flags += [ "-DELF" ] | 529 yasm_flags += [ "-DELF" ] |
| 529 if (current_cpu == "x64") { | 530 if (current_cpu == "x64") { |
| 530 # TODO(ajwong): Why isn't this true in mac? | 531 # TODO(ajwong): Why isn't this true in mac? |
| 531 yasm_flags += [ "-DPIC" ] | 532 yasm_flags += [ "-DPIC" ] |
| 532 } | 533 } |
| 533 } | 534 } |
| 534 } | 535 } |
| 535 } | 536 } |
| 536 } | 537 } |
| OLD | NEW |