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

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

Issue 1938113002: Sync media/gpu gyp and gn Mac framework deps (copy gyp => gn) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac fwks: media/gpu/BUILD.gn to match media/gpu/build.gyp Created 4 years, 7 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/gpu/args.gni") 7 import("//media/gpu/args.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 10
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 if (is_mac) { 170 if (is_mac) {
171 sources += [ 171 sources += [
172 "vt_mac.h", 172 "vt_mac.h",
173 "vt_video_decode_accelerator_mac.cc", 173 "vt_video_decode_accelerator_mac.cc",
174 "vt_video_decode_accelerator_mac.h", 174 "vt_video_decode_accelerator_mac.h",
175 "vt_video_encode_accelerator_mac.cc", 175 "vt_video_encode_accelerator_mac.cc",
176 "vt_video_encode_accelerator_mac.h", 176 "vt_video_encode_accelerator_mac.h",
177 ] + get_target_outputs(":libvt_generate_stubs") 177 ] + get_target_outputs(":libvt_generate_stubs")
178 deps += [ ":libvt_generate_stubs" ] 178 deps += [ ":libvt_generate_stubs" ]
179 lib_dirs = [ "$mac_sdk_path/usr/lib" ] 179 lib_dirs = [ "$mac_sdk_path/usr/lib" ]
180 180 libs = [
181 # TODO(markdittmer): Determine which libs are needed here. 181 "AVFoundation.framework",
182 libs += [ 182 "CoreMedia.framework",
183 # "AVFoundation.framework", 183 "CoreVideo.framework",
184 # "CoreMedia.framework", 184 "IOSurface.framework",
185 # "CoreVideo.framework", 185 "QuartzCore.framework",
186 # "IOSurface.framework", 186 "sandbox",
187 # "OpenGL.framework",
188 # "QuartzCore.framework",
189 # "sandbox",
190 ] 187 ]
191 } 188 }
192 189
193 if (is_android) { 190 if (is_android) {
194 sources += [ 191 sources += [
195 "android_copying_backing_strategy.cc", 192 "android_copying_backing_strategy.cc",
196 "android_copying_backing_strategy.h", 193 "android_copying_backing_strategy.h",
197 "android_deferred_rendering_backing_strategy.cc", 194 "android_deferred_rendering_backing_strategy.cc",
198 "android_deferred_rendering_backing_strategy.h", 195 "android_deferred_rendering_backing_strategy.h",
199 "android_video_decode_accelerator.cc", 196 "android_video_decode_accelerator.cc",
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 "video_encode_accelerator_unittest.cc", 426 "video_encode_accelerator_unittest.cc",
430 ] 427 ]
431 if (use_x11) { 428 if (use_x11) {
432 deps += [ "//ui/gfx/x" ] 429 deps += [ "//ui/gfx/x" ]
433 } 430 }
434 if (use_ozone) { 431 if (use_ozone) {
435 deps += [ "//ui/ozone" ] 432 deps += [ "//ui/ozone" ]
436 } 433 }
437 } 434 }
438 } 435 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698