Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(299)

Unified Diff: gyp/gpu.gyp

Issue 178223015: Modify how gpu.gyp includes angle.gyp. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Include and remove sources the old way. Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/gpu.gyp
diff --git a/gyp/gpu.gyp b/gyp/gpu.gyp
index 77cbf2e256a5f8299581fb3ea2e6dacce78541cd..471004cbe443fd588ede184cf7d0960e30e091dc 100644
--- a/gyp/gpu.gyp
+++ b/gyp/gpu.gyp
@@ -1,3 +1,4 @@
+# GYP for building gpu
{
'target_defaults': {
'conditions': [
@@ -81,7 +82,6 @@
'type': 'static_library',
'standalone_static_library': 1,
'dependencies': [
- 'angle.gyp:*',
'core.gyp:*',
'edtaa.gyp:*',
'utils.gyp:*',
@@ -94,9 +94,6 @@
'../src/core',
'../src/gpu',
],
- 'export_dependent_settings': [
- 'angle.gyp:*',
- ],
'sources': [
'<@(skgpu_sources)',
'<@(skgpu_native_gl_sources)',
@@ -208,16 +205,17 @@
'../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
],
}],
- [ 'not skia_angle', {
- 'sources!': [
- '<@(skgpu_angle_gl_sources)',
- ],
- 'dependencies!': [
+ [ 'skia_angle', {
+ 'dependencies': [
'angle.gyp:*',
],
- 'export_dependent_settings!': [
+ 'export_dependent_settings': [
'angle.gyp:*',
],
+ }, { # not skia_angle
+ 'sources!': [
+ '<@(skgpu_angle_gl_sources)',
+ ],
}],
[ 'skia_os == "android"', {
'sources!': [
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698