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("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 gypi_values = exec_script("//build/gypi_to_gn.py", | 9 gypi_values = exec_script("//build/gypi_to_gn.py", |
10 [ rebase_path("views.gyp") ], | 10 [ rebase_path("views.gyp") ], |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 } | 134 } |
135 } | 135 } |
136 | 136 |
137 if (is_mac) { | 137 if (is_mac) { |
138 deps += [ | 138 deps += [ |
139 "//ui/accelerated_widget_mac", | 139 "//ui/accelerated_widget_mac", |
140 "//ui/events:dom_keycode_converter", | 140 "//ui/events:dom_keycode_converter", |
141 ] | 141 ] |
142 libs = [ | 142 libs = [ |
143 "AppKit.framework", | 143 "AppKit.framework", |
| 144 "ApplicationServices.framework", # Temporary hack around https://crbug.co
m/620127. Remove after https://crbug.com/622481 is fixed. |
144 "CoreGraphics.framework", | 145 "CoreGraphics.framework", |
145 "Foundation.framework", | 146 "Foundation.framework", |
146 "QuartzCore.framework", # Required by bridged_native_widget.mm. | 147 "QuartzCore.framework", # Required by bridged_native_widget.mm. |
147 ] | 148 ] |
148 } | 149 } |
149 } | 150 } |
150 | 151 |
151 source_set("test_support_internal") { | 152 source_set("test_support_internal") { |
152 testonly = true | 153 testonly = true |
153 sources = gypi_values.views_test_support_sources | 154 sources = gypi_values.views_test_support_sources |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 "//ui/base:test_support", | 326 "//ui/base:test_support", |
326 "//ui/compositor", | 327 "//ui/compositor", |
327 "//ui/events:test_support", | 328 "//ui/events:test_support", |
328 "//ui/gl:test_support", | 329 "//ui/gl:test_support", |
329 "//ui/resources", | 330 "//ui/resources", |
330 "//ui/resources:ui_test_pak", | 331 "//ui/resources:ui_test_pak", |
331 "//ui/strings", | 332 "//ui/strings", |
332 ] | 333 ] |
333 } | 334 } |
334 } | 335 } |
OLD | NEW |