Chromium Code Reviews| Index: ui/base/BUILD.gn |
| diff --git a/ui/base/BUILD.gn b/ui/base/BUILD.gn |
| index 94ccf3145f1979b65d5d5105b08a7d6bde485b73..765090175550e475e4a90a9f1c7cce2965e0642d 100644 |
| --- a/ui/base/BUILD.gn |
| +++ b/ui/base/BUILD.gn |
| @@ -101,6 +101,8 @@ component("base") { |
| "cursor/cursor_win.cc", |
| "cursor/cursors_aura.cc", |
| "cursor/cursors_aura.h", |
| + "cursor/image_cursors.cc", |
| + "cursor/image_cursors.h", |
| "default_theme_provider.cc", |
| "default_theme_provider.h", |
| "default_theme_provider_mac.mm", |
| @@ -448,6 +450,18 @@ component("base") { |
| } |
| } |
| + if (use_ozone) { |
| + sources += [ |
| + "cursor/cursor_loader_ozone.cc", |
|
brettw
2014/07/23 00:32:32
I just checked in:
http://src.chromium.org/viewvc/
spang
2014/07/23 17:27:56
Done.
|
| + "cursor/cursor_ozone.cc", |
| + "cursor/ozone/bitmap_cursor_factory_ozone.cc", |
| + "cursor/ozone/bitmap_cursor_factory_ozone.h", |
| + ] |
| + deps += [ |
| + "//ui/ozone:ozone_base", |
| + ] |
| + } |
| + |
| if (!toolkit_views) { |
| sources -= [ |
| "dragdrop/drag_drop_types.h", |