| 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 "fake_output_device.h", | 340 "fake_output_device.h", |
| 341 "fake_text_track_stream.cc", | 341 "fake_text_track_stream.cc", |
| 342 "fake_text_track_stream.h", | 342 "fake_text_track_stream.h", |
| 343 "gmock_callback_support.h", | 343 "gmock_callback_support.h", |
| 344 "mock_audio_renderer_sink.cc", | 344 "mock_audio_renderer_sink.cc", |
| 345 "mock_audio_renderer_sink.h", | 345 "mock_audio_renderer_sink.h", |
| 346 "mock_demuxer_host.cc", | 346 "mock_demuxer_host.cc", |
| 347 "mock_demuxer_host.h", | 347 "mock_demuxer_host.h", |
| 348 "mock_filters.cc", | 348 "mock_filters.cc", |
| 349 "mock_filters.h", | 349 "mock_filters.h", |
| 350 "mock_media_log.cc", |
| 351 "mock_media_log.h", |
| 350 "test_data_util.cc", | 352 "test_data_util.cc", |
| 351 "test_data_util.h", | 353 "test_data_util.h", |
| 352 "test_helpers.cc", | 354 "test_helpers.cc", |
| 353 "test_helpers.h", | 355 "test_helpers.h", |
| 354 ] | 356 ] |
| 355 configs += [ "//media:media_config" ] | 357 configs += [ "//media:media_config" ] |
| 356 deps = [ | 358 deps = [ |
| 357 "//testing/gmock", | 359 "//testing/gmock", |
| 358 ] | 360 ] |
| 359 } | 361 } |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 if (is_posix) { | 526 if (is_posix) { |
| 525 yasm_flags += [ "-DELF" ] | 527 yasm_flags += [ "-DELF" ] |
| 526 if (current_cpu == "x64") { | 528 if (current_cpu == "x64") { |
| 527 # TODO(ajwong): Why isn't this true in mac? | 529 # TODO(ajwong): Why isn't this true in mac? |
| 528 yasm_flags += [ "-DPIC" ] | 530 yasm_flags += [ "-DPIC" ] |
| 529 } | 531 } |
| 530 } | 532 } |
| 531 } | 533 } |
| 532 } | 534 } |
| 533 } | 535 } |
| OLD | NEW |