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

Side by Side Diff: gyp/skslc.gyp

Issue 2302723005: Move uils and sksl to a common sources GYP file. (Closed)
Patch Set: Created 4 years, 3 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 unified diff | Download patch
« no previous file with comments | « gyp/sksl.gypi ('k') | gyp/utils.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 Google Inc. 1 # Copyright 2016 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 { 5 {
6 'includes': [ 6 'includes': [
7 'apptype_console.gypi', 7 'apptype_console.gypi',
8 ], 8 ],
9 'variables': {
10 'includes': [ 'skia_sources.gypi' ],
11 },
9 'targets': [ 12 'targets': [
10 { 13 {
11 'target_name': 'skslc', 14 'target_name': 'skslc',
12 'type': 'executable', 15 'type': 'executable',
13 'includes' : [ 16 'include_dirs': [ '<@(sksl_include_dirs)' ],
14 'sksl.gypi',
15 ],
16 'sources': [ 17 'sources': [
18 '<@(sksl_sources)',
17 '../src/sksl/SkSLMain.cpp', 19 '../src/sksl/SkSLMain.cpp',
18 ], 20 ],
19 'configurations': { 21 'configurations': {
20 'Debug': { 22 'Debug': {
21 'defines': [ 23 'defines': [
22 'DEBUG', 24 'DEBUG',
23 ], 25 ],
24 }, 26 },
25 }, 27 },
26 }, 28 },
27 ], 29 ],
28 } 30 }
OLDNEW
« no previous file with comments | « gyp/sksl.gypi ('k') | gyp/utils.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698