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

Side by Side Diff: ui/accelerated_widget_mac/BUILD.gn

Issue 1087873003: Fix errors found in Mac gn component builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Try to fix sandbox_mac_unittests Created 5 years, 8 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 # GYP version: ui/accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_ widget_mac 5 # GYP version: ui/accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_ widget_mac
6 component("accelerated_widget_mac") { 6 component("accelerated_widget_mac") {
7 sources = [ 7 sources = [
8 "accelerated_widget_mac.h", 8 "accelerated_widget_mac.h",
9 "accelerated_widget_mac.mm", 9 "accelerated_widget_mac.mm",
10 "accelerated_widget_mac_export.h", 10 "accelerated_widget_mac_export.h",
11 "io_surface_context.h", 11 "io_surface_context.h",
12 "io_surface_context.mm", 12 "io_surface_context.mm",
13 "io_surface_layer.h", 13 "io_surface_layer.h",
14 "io_surface_layer.mm", 14 "io_surface_layer.mm",
15 "io_surface_texture.h", 15 "io_surface_texture.h",
16 "io_surface_texture.mm", 16 "io_surface_texture.mm",
17 "software_layer.h", 17 "software_layer.h",
18 "software_layer.mm", 18 "software_layer.mm",
19 "surface_handle_types.cc", 19 "surface_handle_types.cc",
20 "surface_handle_types.h", 20 "surface_handle_types.h",
21 ] 21 ]
22 22
23 defines = [ "ACCELERATED_WIDGET_MAC_IMPLEMENTATION" ] 23 defines = [ "ACCELERATED_WIDGET_MAC_IMPLEMENTATION" ]
24 24
25 deps = [ 25 deps = [
26 "//base", 26 "//base",
27 "//skia", 27 "//skia",
28 "//ui/base", 28 "//ui/base",
29 "//ui/events", 29 "//ui/events",
30 "//ui/events:events_base",
30 "//ui/gfx/geometry", 31 "//ui/gfx/geometry",
31 "//ui/gl", 32 "//ui/gl",
32 ] 33 ]
33 34
34 libs = [ "QuartzCore.framework" ] 35 libs = [
36 # Required by io_surface_texture.mm.
37 "IOSurface.framework",
38 "OpenGL.framework",
39 "QuartzCore.framework",
40 ]
35 } 41 }
OLDNEW
« no previous file with comments | « third_party/sudden_motion_sensor/BUILD.gn ('k') | ui/accelerated_widget_mac/accelerated_widget_mac.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698