No need to include ../tools/flags in include_dirs when depending on flags target.
"flags" target does it by direct_dependent_settings which exports the include_dirs to targets that depend on it. Along the way fixed the indentation of experimental.gyp and v8.gyp. BUG=None TEST=make all R=mtklein@google.com Author: tfarina@chromium.org Review URL: https://codereview.chromium.org/343283002
This commit is contained in:
parent
830f356135
commit
1c4d5784f9
@ -23,44 +23,34 @@
|
|||||||
'target_name': 'SkiaExamples',
|
'target_name': 'SkiaExamples',
|
||||||
'type': 'executable',
|
'type': 'executable',
|
||||||
'mac_bundle' : 1,
|
'mac_bundle' : 1,
|
||||||
'include_dirs' : [
|
|
||||||
'../tools/flags',
|
|
||||||
],
|
|
||||||
'includes': [],
|
|
||||||
'sources': [
|
'sources': [
|
||||||
'../experimental/SkiaExamples/SkExample.h',
|
'../experimental/SkiaExamples/SkExample.h',
|
||||||
'../experimental/SkiaExamples/SkExample.cpp',
|
'../experimental/SkiaExamples/SkExample.cpp',
|
||||||
'../experimental/SkiaExamples/HelloSkiaExample.cpp',
|
'../experimental/SkiaExamples/HelloSkiaExample.cpp',
|
||||||
],
|
],
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'flags.gyp:flags',
|
||||||
'skia_lib.gyp:skia_lib',
|
'skia_lib.gyp:skia_lib',
|
||||||
'views.gyp:views',
|
'views.gyp:views',
|
||||||
'xml.gyp:xml',
|
'xml.gyp:xml',
|
||||||
'flags.gyp:flags'
|
|
||||||
],
|
],
|
||||||
'conditions' : [
|
'conditions' : [
|
||||||
[ 'skia_gpu == 1', {
|
[ 'skia_gpu == 1', {
|
||||||
'include_dirs' : [
|
'include_dirs' : [
|
||||||
'../src/gpu', #gl/GrGLUtil.h
|
'../src/gpu',
|
||||||
]
|
],
|
||||||
}],
|
}],
|
||||||
[ 'skia_os == "win"', {
|
[ 'skia_os == "win"', {
|
||||||
'sources' : [
|
'sources' : [
|
||||||
'../src/views/win/SkOSWindow_Win.cpp',
|
'../src/views/win/SkOSWindow_Win.cpp',
|
||||||
'../src/views/win/skia_win.cpp',
|
'../src/views/win/skia_win.cpp',
|
||||||
],
|
],
|
||||||
},
|
}],
|
||||||
],
|
|
||||||
|
|
||||||
[ 'skia_os == "mac"', {
|
[ 'skia_os == "mac"', {
|
||||||
'sources': [
|
'sources': [
|
||||||
|
|
||||||
# SkiaExamples specific files
|
|
||||||
'../experimental/SkiaExamples/SkiaExamples-Info.plist',
|
'../experimental/SkiaExamples/SkiaExamples-Info.plist',
|
||||||
'../experimental/SkiaExamples/SkExampleNSView.h',
|
'../experimental/SkiaExamples/SkExampleNSView.h',
|
||||||
'../experimental/SkiaExamples/SkExampleNSView.mm',
|
'../experimental/SkiaExamples/SkExampleNSView.mm',
|
||||||
|
|
||||||
# Mac files
|
|
||||||
'../src/views/mac/SampleAppDelegate.h',
|
'../src/views/mac/SampleAppDelegate.h',
|
||||||
'../src/views/mac/SampleAppDelegate.mm',
|
'../src/views/mac/SampleAppDelegate.mm',
|
||||||
'../src/views/mac/SkEventNotifier.mm',
|
'../src/views/mac/SkEventNotifier.mm',
|
||||||
@ -76,16 +66,13 @@
|
|||||||
'include_dirs' : [
|
'include_dirs' : [
|
||||||
'../src/views/mac/'
|
'../src/views/mac/'
|
||||||
],
|
],
|
||||||
'link_settings': {
|
|
||||||
},
|
|
||||||
'xcode_settings' : {
|
'xcode_settings' : {
|
||||||
'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.plist',
|
'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.plist',
|
||||||
},
|
},
|
||||||
'mac_bundle_resources' : [
|
'mac_bundle_resources' : [
|
||||||
'../experimental/SkiaExamples/SkiaExamples.xib'
|
'../experimental/SkiaExamples/SkiaExamples.xib'
|
||||||
],
|
],
|
||||||
}
|
}],
|
||||||
],
|
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
'target_name': 'flags',
|
'target_name': 'flags',
|
||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'sources': [
|
'sources': [
|
||||||
'../tools/flags/SkCommandLineFlags.h',
|
|
||||||
'../tools/flags/SkCommandLineFlags.cpp',
|
'../tools/flags/SkCommandLineFlags.cpp',
|
||||||
|
'../tools/flags/SkCommandLineFlags.h',
|
||||||
],
|
],
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'skia_lib.gyp:skia_lib',
|
'skia_lib.gyp:skia_lib',
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
'../src/pdf',
|
'../src/pdf',
|
||||||
'../src/pipe/utils',
|
'../src/pipe/utils',
|
||||||
'../src/utils',
|
'../src/utils',
|
||||||
'../tools/',
|
|
||||||
],
|
],
|
||||||
'includes': [
|
'includes': [
|
||||||
'pathops_unittest.gypi',
|
'pathops_unittest.gypi',
|
||||||
@ -28,12 +27,12 @@
|
|||||||
'../tests/PathOpsOpLoopThreadedTest.cpp',
|
'../tests/PathOpsOpLoopThreadedTest.cpp',
|
||||||
'../tests/PathOpsSkpClipTest.cpp',
|
'../tests/PathOpsSkpClipTest.cpp',
|
||||||
'../tests/Test.cpp',
|
'../tests/Test.cpp',
|
||||||
'../tests/skia_test.cpp',
|
|
||||||
'../tests/Test.h',
|
'../tests/Test.h',
|
||||||
|
'../tests/skia_test.cpp',
|
||||||
],
|
],
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'skia_lib.gyp:skia_lib',
|
|
||||||
'flags.gyp:flags',
|
'flags.gyp:flags',
|
||||||
|
'skia_lib.gyp:skia_lib',
|
||||||
],
|
],
|
||||||
'conditions': [
|
'conditions': [
|
||||||
[ 'skia_gpu == 1', {
|
[ 'skia_gpu == 1', {
|
||||||
|
@ -159,13 +159,12 @@
|
|||||||
'../tools/skpdiff/SkImageDiffer.cpp',
|
'../tools/skpdiff/SkImageDiffer.cpp',
|
||||||
'../tools/skpdiff/SkPMetric.cpp',
|
'../tools/skpdiff/SkPMetric.cpp',
|
||||||
'../tools/skpdiff/skpdiff_util.cpp',
|
'../tools/skpdiff/skpdiff_util.cpp',
|
||||||
'../tools/flags/SkCommandLineFlags.cpp',
|
|
||||||
],
|
],
|
||||||
'include_dirs': [
|
'include_dirs': [
|
||||||
'../tools/flags',
|
|
||||||
'../src/core/', # needed for SkTLList.h
|
'../src/core/', # needed for SkTLList.h
|
||||||
],
|
],
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'flags.gyp:flags',
|
||||||
'skia_lib.gyp:skia_lib',
|
'skia_lib.gyp:skia_lib',
|
||||||
],
|
],
|
||||||
'cflags': [
|
'cflags': [
|
||||||
@ -282,7 +281,6 @@
|
|||||||
'../tools/skpinfo.cpp',
|
'../tools/skpinfo.cpp',
|
||||||
],
|
],
|
||||||
'include_dirs': [
|
'include_dirs': [
|
||||||
'../tools/flags',
|
|
||||||
'../src/core/',
|
'../src/core/',
|
||||||
],
|
],
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
@ -301,7 +299,6 @@
|
|||||||
'../src/core/',
|
'../src/core/',
|
||||||
'../src/images',
|
'../src/images',
|
||||||
'../src/lazy',
|
'../src/lazy',
|
||||||
'../tools/flags',
|
|
||||||
],
|
],
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'flags.gyp:flags',
|
'flags.gyp:flags',
|
||||||
|
23
gyp/v8.gyp
23
gyp/v8.gyp
@ -6,20 +6,19 @@
|
|||||||
'type': 'executable',
|
'type': 'executable',
|
||||||
'mac_bundle' : 1,
|
'mac_bundle' : 1,
|
||||||
'include_dirs' : [
|
'include_dirs' : [
|
||||||
'../tools/flags',
|
|
||||||
'../third_party/externals/v8/include',
|
'../third_party/externals/v8/include',
|
||||||
],
|
],
|
||||||
'sources': [
|
'sources': [
|
||||||
'../experimental/SkV8Example/SkV8Example.cpp',
|
|
||||||
'../experimental/SkV8Example/SkV8Example.h',
|
|
||||||
'../experimental/SkV8Example/Global.cpp',
|
|
||||||
'../experimental/SkV8Example/Global.h',
|
|
||||||
'../experimental/SkV8Example/Path2D.cpp',
|
|
||||||
'../experimental/SkV8Example/Path2D.h',
|
|
||||||
'../experimental/SkV8Example/BaseContext.cpp',
|
'../experimental/SkV8Example/BaseContext.cpp',
|
||||||
'../experimental/SkV8Example/BaseContext.h',
|
'../experimental/SkV8Example/BaseContext.h',
|
||||||
|
'../experimental/SkV8Example/Global.cpp',
|
||||||
|
'../experimental/SkV8Example/Global.h',
|
||||||
'../experimental/SkV8Example/JsContext.cpp',
|
'../experimental/SkV8Example/JsContext.cpp',
|
||||||
'../experimental/SkV8Example/JsContext.h',
|
'../experimental/SkV8Example/JsContext.h',
|
||||||
|
'../experimental/SkV8Example/Path2D.cpp',
|
||||||
|
'../experimental/SkV8Example/Path2D.h',
|
||||||
|
'../experimental/SkV8Example/SkV8Example.cpp',
|
||||||
|
'../experimental/SkV8Example/SkV8Example.h',
|
||||||
],
|
],
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'flags.gyp:flags',
|
'flags.gyp:flags',
|
||||||
@ -50,7 +49,7 @@
|
|||||||
'conditions' : [
|
'conditions' : [
|
||||||
[ 'skia_gpu == 1', {
|
[ 'skia_gpu == 1', {
|
||||||
'include_dirs' : [
|
'include_dirs' : [
|
||||||
'../src/gpu', #gl/GrGLUtil.h
|
'../src/gpu',
|
||||||
]
|
]
|
||||||
}],
|
}],
|
||||||
[ 'skia_os == "win"', {
|
[ 'skia_os == "win"', {
|
||||||
@ -58,12 +57,9 @@
|
|||||||
'../src/views/win/SkOSWindow_Win.cpp',
|
'../src/views/win/SkOSWindow_Win.cpp',
|
||||||
'../src/views/win/skia_win.cpp',
|
'../src/views/win/skia_win.cpp',
|
||||||
],
|
],
|
||||||
},
|
}],
|
||||||
],
|
|
||||||
|
|
||||||
[ 'skia_os == "mac"', {
|
[ 'skia_os == "mac"', {
|
||||||
'sources': [
|
'sources': [
|
||||||
|
|
||||||
'../src/views/mac/SampleAppDelegate.h',
|
'../src/views/mac/SampleAppDelegate.h',
|
||||||
'../src/views/mac/SampleAppDelegate.mm',
|
'../src/views/mac/SampleAppDelegate.mm',
|
||||||
'../src/views/mac/SkEventNotifier.mm',
|
'../src/views/mac/SkEventNotifier.mm',
|
||||||
@ -85,8 +81,7 @@
|
|||||||
'mac_bundle_resources' : [
|
'mac_bundle_resources' : [
|
||||||
'../experimental/SkiaExamples/SkiaExamples.xib'
|
'../experimental/SkiaExamples/SkiaExamples.xib'
|
||||||
],
|
],
|
||||||
}
|
}],
|
||||||
],
|
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user