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

Side by Side Diff: gyp/debugger.gyp

Issue 1926163002: Delete ChromeOS code (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 7 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/core.gyp ('k') | gyp/everything.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 2015 Google Inc. 1 # Copyright 2015 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 'variables': { 6 'variables': {
7 'skia_warnings_as_errors': 0, 7 'skia_warnings_as_errors': 0,
8 'conditions': [ 8 'conditions': [
9 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { 9 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
10 # Use the systemwide Qt libs by default 10 # Use the systemwide Qt libs by default
11 'variables': { 11 'variables': {
12 'qt_sdk%': '/usr', 12 'qt_sdk%': '/usr',
13 }, 13 },
14 'qt_sdk': '<(qt_sdk)', 14 'qt_sdk': '<(qt_sdk)',
15 'qt_moc%': 'moc', 15 'qt_moc%': 'moc',
16 'qt_includes': [ 16 'qt_includes': [
17 '<(qt_sdk)/include', 17 '<(qt_sdk)/include',
18 '<(qt_sdk)/include/QtCore', 18 '<(qt_sdk)/include/QtCore',
19 '<(qt_sdk)/include/QtGui', 19 '<(qt_sdk)/include/QtGui',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], 169 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ],
170 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', 170 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)',
171 '<(RULE_INPUT_PATH)', 171 '<(RULE_INPUT_PATH)',
172 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], 172 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ],
173 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', 173 'message': 'Generating <(RULE_INPUT_ROOT).cpp.',
174 }, 174 },
175 ], 175 ],
176 }, 176 },
177 ], 177 ],
178 } 178 }
OLDNEW
« no previous file with comments | « gyp/core.gyp ('k') | gyp/everything.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698