Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Gyp for utils. | 1 # Gyp for utils. |
| 2 { | 2 { |
| 3 'targets': [ | 3 'targets': [ |
| 4 { | 4 { |
| 5 'target_name': 'utils', | 5 'target_name': 'utils', |
| 6 'product_name': 'skia_utils', | 6 'product_name': 'skia_utils', |
| 7 'type': 'static_library', | 7 'type': 'static_library', |
| 8 'standalone_static_library': 1, | 8 'standalone_static_library': 1, |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 'core.gyp:*', | 10 'core.gyp:*', |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 117 ], | 117 ], |
| 118 }], | 118 }], |
| 119 ], | 119 ], |
| 120 'direct_dependent_settings': { | 120 'direct_dependent_settings': { |
| 121 'include_dirs': [ | 121 'include_dirs': [ |
| 122 '../include/utils', | 122 '../include/utils', |
| 123 '../src/utils', | 123 '../src/utils', |
| 124 ], | 124 ], |
| 125 }, | 125 }, |
| 126 }, | 126 }, |
| 127 { | |
| 128 'target_name': 'android_utils', | |
| 129 'product_name': 'skia_android_utils', | |
| 130 'type': 'static_library', | |
| 131 'standalone_static_library': 1, | |
| 132 'dependencies': [ | |
| 133 'core.gyp:*', | |
| 134 ], | |
| 135 'includes': [ | |
| 136 'android_utils.gypi', | |
|
mtklein
2015/03/23 16:47:01
Unless you're planning on having these built into
| |
| 137 ], | |
| 138 'include_dirs': [ | |
| 139 '../include/core', | |
| 140 '../include/utils/android', | |
| 141 '../src/core', | |
| 142 ], | |
| 143 'sources': [ | |
| 144 'android_utils.gypi', # Makes the gypi appear in IDEs (but does not modi fy the build). | |
| 145 ], | |
| 146 'direct_dependent_settings': { | |
| 147 'include_dirs': [ | |
| 148 '../include/utils/android', | |
|
mtklein
2015/03/23 17:49:02
Don't you want to keep this, switched over to '../
tomhudson
2015/03/23 18:06:27
Done.
| |
| 149 ], | |
| 150 }, | |
| 151 }, | |
| 127 ], | 152 ], |
| 128 } | 153 } |
| OLD | NEW |