| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 # 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 |
| 8 component("accelerated_widget_mac") { | 8 component("accelerated_widget_mac") { |
| 9 sources = [ | 9 sources = [ |
| 10 "accelerated_widget_mac.h", | 10 "accelerated_widget_mac.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "//skia", | 32 "//skia", |
| 33 "//ui/base", | 33 "//ui/base", |
| 34 "//ui/events", | 34 "//ui/events", |
| 35 "//ui/events:events_base", | 35 "//ui/events:events_base", |
| 36 "//ui/gfx", | 36 "//ui/gfx", |
| 37 "//ui/gfx/geometry", | 37 "//ui/gfx/geometry", |
| 38 "//ui/gl", | 38 "//ui/gl", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 libs = [ | 41 libs = [ |
| 42 "ApplicationServices.framework", # Temporary hack around https://crbug.com/
620127. |
| 42 "AVFoundation.framework", | 43 "AVFoundation.framework", |
| 43 "CoreGraphics.framework", | 44 "CoreGraphics.framework", |
| 44 "Foundation.framework", | 45 "Foundation.framework", |
| 45 "CoreFoundation.framework", | 46 "CoreFoundation.framework", |
| 46 "CoreMedia.framework", | 47 "CoreMedia.framework", |
| 47 "IOSurface.framework", | 48 "IOSurface.framework", |
| 48 "OpenGL.framework", | 49 "OpenGL.framework", |
| 49 "QuartzCore.framework", | 50 "QuartzCore.framework", |
| 50 ] | 51 ] |
| 51 } | 52 } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 65 "//testing/gmock", | 66 "//testing/gmock", |
| 66 "//testing/gtest", | 67 "//testing/gtest", |
| 67 "//ui/gfx:test_support", | 68 "//ui/gfx:test_support", |
| 68 "//ui/gl:test_support", | 69 "//ui/gl:test_support", |
| 69 ] | 70 ] |
| 70 libs = [ | 71 libs = [ |
| 71 "AVFoundation.framework", | 72 "AVFoundation.framework", |
| 72 "QuartzCore.framework", | 73 "QuartzCore.framework", |
| 73 ] | 74 ] |
| 74 } | 75 } |
| OLD | NEW |