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

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

Issue 883293005: Cast: Basic cast_receiver API for chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: media_stream_source.{h,cc} moved to separate CL, cleanup, tested Created 5 years, 10 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
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 "text_renderer.cc", 156 "text_renderer.cc",
157 "text_renderer.h", 157 "text_renderer.h",
158 "text_track.h", 158 "text_track.h",
159 "text_track_config.cc", 159 "text_track_config.cc",
160 "text_track_config.h", 160 "text_track_config.h",
161 "time_delta_interpolator.cc", 161 "time_delta_interpolator.cc",
162 "time_delta_interpolator.h", 162 "time_delta_interpolator.h",
163 "time_source.h", 163 "time_source.h",
164 "user_input_monitor.cc", 164 "user_input_monitor.cc",
165 "user_input_monitor.h", 165 "user_input_monitor.h",
166 "video_capture_types.cc",
167 "video_capture_types.h",
168 "video_capturer_source.cc",
169 "video_capturer_source.h",
166 "video_decoder.cc", 170 "video_decoder.cc",
167 "video_decoder.h", 171 "video_decoder.h",
168 "video_decoder_config.cc", 172 "video_decoder_config.cc",
169 "video_decoder_config.h", 173 "video_decoder_config.h",
170 "video_frame.cc", 174 "video_frame.cc",
171 "video_frame.h", 175 "video_frame.h",
172 "video_frame_pool.cc", 176 "video_frame_pool.cc",
173 "video_frame_pool.h", 177 "video_frame_pool.h",
174 "video_renderer.cc", 178 "video_renderer.cc",
175 "video_renderer.h", 179 "video_renderer.h",
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 if (is_posix) { 473 if (is_posix) {
470 yasm_flags += [ "-DELF" ] 474 yasm_flags += [ "-DELF" ]
471 if (cpu_arch == "x64") { 475 if (cpu_arch == "x64") {
472 # TODO(ajwong): Why isn't this true in mac? 476 # TODO(ajwong): Why isn't this true in mac?
473 yasm_flags += [ "-DPIC" ] 477 yasm_flags += [ "-DPIC" ]
474 } 478 }
475 } 479 }
476 } 480 }
477 } 481 }
478 } 482 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698