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

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

Issue 1427183002: Move MediaDrmBridge provision communication to native side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: For on-demand provisioning the fetcher is created in content/ and depends on the renderer. Created 5 years, 1 month 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/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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 "multi_channel_resampler.cc", 131 "multi_channel_resampler.cc",
132 "multi_channel_resampler.h", 132 "multi_channel_resampler.h",
133 "null_video_sink.cc", 133 "null_video_sink.cc",
134 "null_video_sink.h", 134 "null_video_sink.h",
135 "output_device.h", 135 "output_device.h",
136 "pipeline.cc", 136 "pipeline.cc",
137 "pipeline.h", 137 "pipeline.h",
138 "pipeline_status.h", 138 "pipeline_status.h",
139 "player_tracker.cc", 139 "player_tracker.cc",
140 "player_tracker.h", 140 "player_tracker.h",
141 "provision_fetcher.h",
141 "ranges.cc", 142 "ranges.cc",
142 "ranges.h", 143 "ranges.h",
143 "renderer.cc", 144 "renderer.cc",
144 "renderer.h", 145 "renderer.h",
145 "renderer_factory.cc", 146 "renderer_factory.cc",
146 "renderer_factory.h", 147 "renderer_factory.h",
147 "sample_format.cc", 148 "sample_format.cc",
148 "sample_format.h", 149 "sample_format.h",
149 "seekable_buffer.cc", 150 "seekable_buffer.cc",
150 "seekable_buffer.h", 151 "seekable_buffer.h",
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 if (is_posix) { 541 if (is_posix) {
541 yasm_flags += [ "-DELF" ] 542 yasm_flags += [ "-DELF" ]
542 if (current_cpu == "x64") { 543 if (current_cpu == "x64") {
543 # TODO(ajwong): Why isn't this true in mac? 544 # TODO(ajwong): Why isn't this true in mac?
544 yasm_flags += [ "-DPIC" ] 545 yasm_flags += [ "-DPIC" ]
545 } 546 }
546 } 547 }
547 } 548 }
548 } 549 }
549 } 550 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698