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

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

Issue 877323009: Extracted media mime type checks from net/base/ into media/base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build fixes #1 Created 5 years, 9 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
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/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
11 source_set("base") { 11 source_set("base") {
12 visibility = [ "//media/*" ] 12 visibility = [
13 "//media/*",
14 "//mojo/*",
15 ]
13 sources = [ 16 sources = [
14 "audio_block_fifo.cc", 17 "audio_block_fifo.cc",
15 "audio_block_fifo.h", 18 "audio_block_fifo.h",
16 "audio_buffer.cc", 19 "audio_buffer.cc",
17 "audio_buffer.h", 20 "audio_buffer.h",
18 "audio_buffer_converter.cc", 21 "audio_buffer_converter.cc",
19 "audio_buffer_converter.h", 22 "audio_buffer_converter.h",
20 "audio_buffer_queue.cc", 23 "audio_buffer_queue.cc",
21 "audio_buffer_queue.h", 24 "audio_buffer_queue.h",
22 "audio_capturer_source.h", 25 "audio_capturer_source.h",
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 "media_client.h", 113 "media_client.h",
111 "media_keys.cc", 114 "media_keys.cc",
112 "media_keys.h", 115 "media_keys.h",
113 "media_log.cc", 116 "media_log.cc",
114 "media_log.h", 117 "media_log.h",
115 "media_log_event.h", 118 "media_log_event.h",
116 "media_permission.cc", 119 "media_permission.cc",
117 "media_permission.h", 120 "media_permission.h",
118 "media_switches.cc", 121 "media_switches.cc",
119 "media_switches.h", 122 "media_switches.h",
123 "mime_util.cc",
124 "mime_util.h",
120 "multi_channel_resampler.cc", 125 "multi_channel_resampler.cc",
121 "multi_channel_resampler.h", 126 "multi_channel_resampler.h",
122 "pipeline.cc", 127 "pipeline.cc",
123 "pipeline.h", 128 "pipeline.h",
124 "pipeline_status.h", 129 "pipeline_status.h",
125 "player_tracker.cc", 130 "player_tracker.cc",
126 "player_tracker.h", 131 "player_tracker.h",
127 "ranges.cc", 132 "ranges.cc",
128 "ranges.h", 133 "ranges.h",
129 "renderer.cc", 134 "renderer.cc",
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 "callback_holder.h", 333 "callback_holder.h",
329 "callback_holder_unittest.cc", 334 "callback_holder_unittest.cc",
330 "channel_mixer_unittest.cc", 335 "channel_mixer_unittest.cc",
331 "channel_mixing_matrix_unittest.cc", 336 "channel_mixing_matrix_unittest.cc",
332 "data_buffer_unittest.cc", 337 "data_buffer_unittest.cc",
333 "decoder_buffer_queue_unittest.cc", 338 "decoder_buffer_queue_unittest.cc",
334 "decoder_buffer_unittest.cc", 339 "decoder_buffer_unittest.cc",
335 "djb2_unittest.cc", 340 "djb2_unittest.cc",
336 "gmock_callback_support_unittest.cc", 341 "gmock_callback_support_unittest.cc",
337 "key_systems_unittest.cc", 342 "key_systems_unittest.cc",
343 "mime_util_unittest.cc",
338 "multi_channel_resampler_unittest.cc", 344 "multi_channel_resampler_unittest.cc",
339 "pipeline_unittest.cc", 345 "pipeline_unittest.cc",
340 "ranges_unittest.cc", 346 "ranges_unittest.cc",
341 "run_all_unittests.cc", 347 "run_all_unittests.cc",
342 "seekable_buffer_unittest.cc", 348 "seekable_buffer_unittest.cc",
343 "serial_runner_unittest.cc", 349 "serial_runner_unittest.cc",
344 "sinc_resampler_unittest.cc", 350 "sinc_resampler_unittest.cc",
345 "stream_parser_unittest.cc", 351 "stream_parser_unittest.cc",
346 "text_ranges_unittest.cc", 352 "text_ranges_unittest.cc",
347 "text_renderer_unittest.cc", 353 "text_renderer_unittest.cc",
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 if (is_posix) { 483 if (is_posix) {
478 yasm_flags += [ "-DELF" ] 484 yasm_flags += [ "-DELF" ]
479 if (current_cpu == "x64") { 485 if (current_cpu == "x64") {
480 # TODO(ajwong): Why isn't this true in mac? 486 # TODO(ajwong): Why isn't this true in mac?
481 yasm_flags += [ "-DPIC" ] 487 yasm_flags += [ "-DPIC" ]
482 } 488 }
483 } 489 }
484 } 490 }
485 } 491 }
486 } 492 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698