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

Side by Side Diff: gyp/sksl.gyp

Issue 1984363002: initial checkin of SkSL compiler (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: documentation and cleanups Created 4 years, 6 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
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 {
5 'targets': [
6 {
7 'target_name': 'sksl',
8 'type': 'static_library',
9 'standalone_static_library': 1,
10 'include_dirs': [
11 '../include',
12 '../include/config',
13 '../include/core',
14 '../include/private',
15 '../src/sksl',
16 ],
17 'sources': [
18 '../src/sksl/SkSLCompiler.cpp',
19 '../src/sksl/SkSLIRGenerator.cpp',
20 '../src/sksl/SkSLParser.cpp',
21 '../src/sksl/SkSLSPIRVCodeGenerator.cpp',
22 '../src/sksl/SkSLUtil.cpp',
23 '../src/sksl/ir/SkSLSymbolTable.cpp',
24 '../src/sksl/ir/SkSLType.cpp',
25 ],
26 },
27 ],
28 }
OLDNEW
« no previous file with comments | « gyp/gpu.gyp ('k') | src/gpu/vk/GrVkGpu.h » ('j') | src/gpu/vk/GrVkGpu.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698