Add effects/core.gypi to 'sources' to make them appear in VS projects
authorbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 4 Sep 2012 14:37:12 +0000 (14:37 +0000)
committerbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 4 Sep 2012 14:37:12 +0000 (14:37 +0000)
Review URL: https://codereview.appspot.com/6493075/

git-svn-id: http://skia.googlecode.com/svn/trunk@5384 2bbb7eff-a529-9590-31e7-b0007b416f81

gyp/core.gyp
gyp/effects.gyp
gyp/gpu.gyp

index e23572a..1982a90 100644 (file)
@@ -19,6 +19,9 @@
         '../src/core',
         '../src/image',
       ],
+      'sources': [
+        'core.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
+      ],
       'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800],
       'conditions': [
         [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
index 7ea732a..b3c5bb6 100644 (file)
@@ -18,6 +18,9 @@
       'dependencies': [
         'core.gyp:core',
       ],
+      'sources': [
+        'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
+      ],
       'conditions': [
         ['skia_gpu == 1', {
           'include_dirs': [
index 172f84e..10f1a80 100644 (file)
         '<@(skgr_mesa_gl_sources)',
         '<@(skgr_debug_gl_sources)',
         '<@(skgr_null_gl_sources)',
-        'gpu.gypi',
+        'gpu.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
       ],
       'conditions': [
         [ 'not skia_mesa', {
         '<@(gr_mesa_gl_sources)',
         '<@(gr_debug_gl_sources)',
         '<@(gr_null_gl_sources)',
-        'gpu.gypi',
+        'gpu.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
       ],
       'defines': [
         'GR_IMPLEMENTATION=1',