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

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

Issue 1901253002: Mac: Towards moving CALayerTree to the browser proc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove BUILD.gn Created 4 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
« no previous file with comments | « gpu/ipc/service/image_transport_surface_overlay_mac.mm ('k') | ui/accelerated_widget_mac/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//testing/test.gni")
6
5 # GYP version: ui/accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_ widget_mac 7 # GYP version: ui/accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_ widget_mac
6 component("accelerated_widget_mac") { 8 component("accelerated_widget_mac") {
7 sources = [ 9 sources = [
8 "accelerated_widget_mac.h", 10 "accelerated_widget_mac.h",
9 "accelerated_widget_mac.mm", 11 "accelerated_widget_mac.mm",
10 "accelerated_widget_mac_export.h", 12 "accelerated_widget_mac_export.h",
13 "ca_layer_partial_damage_tree_mac.h",
14 "ca_layer_partial_damage_tree_mac.mm",
15 "ca_layer_tree_mac.h",
16 "ca_layer_tree_mac.mm",
11 "display_link_mac.cc", 17 "display_link_mac.cc",
12 "display_link_mac.h", 18 "display_link_mac.h",
13 "io_surface_context.h", 19 "io_surface_context.h",
14 "io_surface_context.mm", 20 "io_surface_context.mm",
15 "window_resize_helper_mac.cc", 21 "window_resize_helper_mac.cc",
16 "window_resize_helper_mac.h", 22 "window_resize_helper_mac.h",
17 ] 23 ]
18 24
19 defines = [ "ACCELERATED_WIDGET_MAC_IMPLEMENTATION" ] 25 defines = [ "ACCELERATED_WIDGET_MAC_IMPLEMENTATION" ]
20 26
21 deps = [ 27 deps = [
22 "//base", 28 "//base",
23 "//skia", 29 "//skia",
24 "//ui/base", 30 "//ui/base",
25 "//ui/events", 31 "//ui/events",
26 "//ui/events:events_base", 32 "//ui/events:events_base",
33 "//ui/gfx",
27 "//ui/gfx/geometry", 34 "//ui/gfx/geometry",
28 "//ui/gl", 35 "//ui/gl",
29 ] 36 ]
30 37
38 libs = [
39 "AVFoundation.framework",
40 "CoreMedia.framework",
41 "QuartzCore.framework",
42 ]
43 }
44
45 # GYP version: ui/accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_ widget_mac_unittests
46 test("accelerated_widget_mac_unittests") {
47 configs += [ "//build/config:precompiled_headers" ]
48 sources = [
49 "ca_layer_tree_unittest_mac.mm",
50 ]
51 deps = [
52 ":accelerated_widget_mac",
53 "//base",
54 "//base/test:run_all_unittests",
55 "//base/test:test_support",
56 "//skia",
57 "//testing/gmock",
58 "//testing/gtest",
59 "//ui/gfx:test_support",
60 "//ui/gl:test_support",
61 ]
31 libs = [ "QuartzCore.framework" ] 62 libs = [ "QuartzCore.framework" ]
32 } 63 }
OLDNEW
« no previous file with comments | « gpu/ipc/service/image_transport_surface_overlay_mac.mm ('k') | ui/accelerated_widget_mac/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698