Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(321)

Side by Side Diff: media/base/BUILD.gn

Issue 1188753002: media: Fix mojo pipeline integration tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: MEDIA_EXPORT Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | media/base/null_video_sink.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "media_permission.cc", 119 "media_permission.cc",
120 "media_permission.h", 120 "media_permission.h",
121 "media_switches.cc", 121 "media_switches.cc",
122 "media_switches.h", 122 "media_switches.h",
123 "mime_util.cc", 123 "mime_util.cc",
124 "mime_util.h", 124 "mime_util.h",
125 "moving_average.cc", 125 "moving_average.cc",
126 "moving_average.h", 126 "moving_average.h",
127 "multi_channel_resampler.cc", 127 "multi_channel_resampler.cc",
128 "multi_channel_resampler.h", 128 "multi_channel_resampler.h",
129 "null_video_sink.cc",
130 "null_video_sink.h",
129 "pipeline.cc", 131 "pipeline.cc",
130 "pipeline.h", 132 "pipeline.h",
131 "pipeline_status.h", 133 "pipeline_status.h",
132 "player_tracker.cc", 134 "player_tracker.cc",
133 "player_tracker.h", 135 "player_tracker.h",
134 "ranges.cc", 136 "ranges.cc",
135 "ranges.h", 137 "ranges.h",
136 "renderer.cc", 138 "renderer.cc",
137 "renderer.h", 139 "renderer.h",
138 "renderer_factory.cc", 140 "renderer_factory.cc",
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 "fake_demuxer_stream.h", 329 "fake_demuxer_stream.h",
328 "fake_text_track_stream.cc", 330 "fake_text_track_stream.cc",
329 "fake_text_track_stream.h", 331 "fake_text_track_stream.h",
330 "gmock_callback_support.h", 332 "gmock_callback_support.h",
331 "mock_audio_renderer_sink.cc", 333 "mock_audio_renderer_sink.cc",
332 "mock_audio_renderer_sink.h", 334 "mock_audio_renderer_sink.h",
333 "mock_demuxer_host.cc", 335 "mock_demuxer_host.cc",
334 "mock_demuxer_host.h", 336 "mock_demuxer_host.h",
335 "mock_filters.cc", 337 "mock_filters.cc",
336 "mock_filters.h", 338 "mock_filters.h",
337 "null_video_sink.cc",
338 "null_video_sink.h",
339 "test_data_util.cc", 339 "test_data_util.cc",
340 "test_data_util.h", 340 "test_data_util.h",
341 "test_helpers.cc", 341 "test_helpers.cc",
342 "test_helpers.h", 342 "test_helpers.h",
343 ] 343 ]
344 configs += [ "//media:media_config" ] 344 configs += [ "//media:media_config" ]
345 deps = [ 345 deps = [
346 "//testing/gmock", 346 "//testing/gmock",
347 ] 347 ]
348 } 348 }
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 if (is_posix) { 513 if (is_posix) {
514 yasm_flags += [ "-DELF" ] 514 yasm_flags += [ "-DELF" ]
515 if (current_cpu == "x64") { 515 if (current_cpu == "x64") {
516 # TODO(ajwong): Why isn't this true in mac? 516 # TODO(ajwong): Why isn't this true in mac?
517 yasm_flags += [ "-DPIC" ] 517 yasm_flags += [ "-DPIC" ]
518 } 518 }
519 } 519 }
520 } 520 }
521 } 521 }
522 } 522 }
OLDNEW
« no previous file with comments | « no previous file | media/base/null_video_sink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698