diff options
Diffstat (limited to 'gfx/gfx.gyp')
-rw-r--r-- | gfx/gfx.gyp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gfx/gfx.gyp b/gfx/gfx.gyp index 0af6121..ab35db6 100644 --- a/gfx/gfx.gyp +++ b/gfx/gfx.gyp @@ -17,6 +17,7 @@ '../testing/gtest.gyp:gtest', ], 'sources': [ + 'insets_unittest.cc', 'rect_unittest.cc', 'run_all_unittests.cc', 'test_suite.h', @@ -53,12 +54,24 @@ '../third_party/zlib/zlib.gyp:zlib', ], 'sources': [ + 'blit.cc', + 'blit.h', 'gfx_paths.cc', 'gfx_paths.h', + 'insets.cc', + 'insets.h', + 'native_widget_types.h', + 'native_widget_types_gtk.cc', + 'path.cc', + 'path.h', + 'path_gtk.cc', + 'path_win.cc', 'point.cc', 'point.h', 'rect.cc', 'rect.h', + 'scrollbar_size.cc', + 'scrollbar_size.h', 'size.cc', 'size.h', ], @@ -69,6 +82,14 @@ 'icon_util.h', ], }], + ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { + 'sources': [ + 'gtk_native_view_manager.cc', + 'gtk_native_view_manager.h', + 'gtk_util.cc', + 'gtk_util.h', + ], + }], ], }, ], |