Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/common/common.gni") | 7 import("//content/common/common.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 if (is_mac) { | 10 if (is_mac) { |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 237 deps += [ | 237 deps += [ |
| 238 ":libvt_generate_stubs", | 238 ":libvt_generate_stubs", |
| 239 "//content:resources", | 239 "//content:resources", |
| 240 "//content/app/resources", | 240 "//content/app/resources", |
| 241 "//third_party/WebKit/public:image_resources", | 241 "//third_party/WebKit/public:image_resources", |
| 242 "//third_party/WebKit/public:resources", | 242 "//third_party/WebKit/public:resources", |
| 243 "//ui/accelerated_widget_mac", | 243 "//ui/accelerated_widget_mac", |
| 244 ] | 244 ] |
| 245 lib_dirs = [ "$mac_sdk_path/usr/lib" ] | 245 lib_dirs = [ "$mac_sdk_path/usr/lib" ] |
| 246 libs += [ | 246 libs += [ |
| 247 "AVFoundation.framework", | |
| 248 "CoreMedia.framework", | |
|
erikchen
2016/03/23 17:44:59
I see you using CM* prefixed functions, but no inc
ccameron
2016/03/23 18:26:20
Added CoreMedia.h to ca_layer_tree_mac.mm
| |
| 249 "CoreVideo.framework", | |
| 247 "IOSurface.framework", | 250 "IOSurface.framework", |
| 248 "OpenGL.framework", | 251 "OpenGL.framework", |
| 249 "QuartzCore.framework", | 252 "QuartzCore.framework", |
| 250 "sandbox", | 253 "sandbox", |
| 251 ] | 254 ] |
| 252 } | 255 } |
| 253 | 256 |
| 254 if (is_android) { | 257 if (is_android) { |
| 255 sources += [ | 258 sources += [ |
| 256 "gpu/client/gpu_memory_buffer_impl_surface_texture.cc", | 259 "gpu/client/gpu_memory_buffer_impl_surface_texture.cc", |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 543 public_deps = [ | 546 public_deps = [ |
| 544 "//components/leveldb/public/interfaces", | 547 "//components/leveldb/public/interfaces", |
| 545 "//components/mus/public/interfaces", | 548 "//components/mus/public/interfaces", |
| 546 "//content/public/common:mojo_bindings", | 549 "//content/public/common:mojo_bindings", |
| 547 "//mojo/shell/public/interfaces", | 550 "//mojo/shell/public/interfaces", |
| 548 "//skia/public/interfaces", | 551 "//skia/public/interfaces", |
| 549 "//third_party/WebKit/public:mojo_bindings", | 552 "//third_party/WebKit/public:mojo_bindings", |
| 550 "//ui/mojo/geometry:interfaces", | 553 "//ui/mojo/geometry:interfaces", |
| 551 ] | 554 ] |
| 552 } | 555 } |
| OLD | NEW |