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

Side by Side Diff: gyp/skslc.gyp

Issue 2317683002: Revert of 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 },
12 'targets': [ 9 'targets': [
13 { 10 {
14 'target_name': 'skslc', 11 'target_name': 'skslc',
15 'type': 'executable', 12 'type': 'executable',
16 'include_dirs': [ '<@(sksl_include_dirs)' ], 13 'includes' : [
14 'sksl.gypi',
15 ],
17 'sources': [ 16 'sources': [
18 '<@(sksl_sources)',
19 '../src/sksl/SkSLMain.cpp', 17 '../src/sksl/SkSLMain.cpp',
20 ], 18 ],
21 'configurations': { 19 'configurations': {
22 'Debug': { 20 'Debug': {
23 'defines': [ 21 'defines': [
24 'DEBUG', 22 'DEBUG',
25 ], 23 ],
26 }, 24 },
27 }, 25 },
28 }, 26 },
29 ], 27 ],
30 } 28 }
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