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

Side by Side Diff: build/all.gyp

Issue 58002: Switching printing to gyp on windows. (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 8 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 | « no previous file | printing/printing.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 (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'conditions': [ 8 'conditions': [
9 ['OS!="win"', { 9 ['OS!="win"', {
10 'all_gyps%': 1, 10 'all_gyps%': 1,
11 },{ # else OS=="win" 11 },{ # else OS=="win"
12 'all_gyps%': 0, 12 'all_gyps%': 0,
13 }], 13 }],
14 ], 14 ],
15 }, 15 },
16 'includes': [ 16 'includes': [
17 'common.gypi', 17 'common.gypi',
18 ], 18 ],
19 'targets': [ 19 'targets': [
20 { 20 {
21 'target_name': 'All', 21 'target_name': 'All',
22 'type': 'none', 22 'type': 'none',
23 'dependencies': [ 23 'dependencies': [
24 '../base/base.gyp:*', 24 '../base/base.gyp:*',
25 '../media/media.gyp:*',
25 '../net/net.gyp:*', 26 '../net/net.gyp:*',
26 '../media/media.gyp:*', 27 '../printing/printing.gyp:*',
27 ], 28 ],
28 'conditions': [ 29 'conditions': [
29 ['OS=="linux"', { 30 ['OS=="linux"', {
30 'dependencies': [ 31 'dependencies': [
31 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*', 32 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*',
32 ], 33 ],
33 }], 34 }],
34 ['OS=="win"', { 35 ['OS=="win"', {
35 'dependencies': [ 36 'dependencies': [
36 '../sandbox/sandbox.gyp:*', 37 '../sandbox/sandbox.gyp:*',
37 ], 38 ],
38 }], 39 }],
39 ['all_gyps', { 40 ['all_gyps', {
40 'dependencies': [ 41 'dependencies': [
41 '../chrome/chrome.gyp:*', 42 '../chrome/chrome.gyp:*',
42 '../printing/printing.gyp:*',
43 '../sdch/sdch.gyp:*', 43 '../sdch/sdch.gyp:*',
44 '../skia/skia.gyp:*', 44 '../skia/skia.gyp:*',
45 '../testing/gtest.gyp:*', 45 '../testing/gtest.gyp:*',
46 '../third_party/bzip2/bzip2.gyp:*', 46 '../third_party/bzip2/bzip2.gyp:*',
47 '../third_party/icu38/icu38.gyp:*', 47 '../third_party/icu38/icu38.gyp:*',
48 '../third_party/libevent/libevent.gyp:*', 48 '../third_party/libevent/libevent.gyp:*',
49 '../third_party/libjpeg/libjpeg.gyp:*', 49 '../third_party/libjpeg/libjpeg.gyp:*',
50 '../third_party/libpng/libpng.gyp:*', 50 '../third_party/libpng/libpng.gyp:*',
51 '../third_party/libxml/libxml.gyp:*', 51 '../third_party/libxml/libxml.gyp:*',
52 '../third_party/libxslt/libxslt.gyp:*', 52 '../third_party/libxslt/libxslt.gyp:*',
53 '../third_party/modp_b64/modp_b64.gyp:*', 53 '../third_party/modp_b64/modp_b64.gyp:*',
54 '../third_party/npapi/npapi.gyp:*', 54 '../third_party/npapi/npapi.gyp:*',
55 '../third_party/sqlite/sqlite.gyp:*', 55 '../third_party/sqlite/sqlite.gyp:*',
56 '../third_party/zlib/zlib.gyp:*', 56 '../third_party/zlib/zlib.gyp:*',
57 '../webkit/tools/test_shell/test_shell.gyp:*', 57 '../webkit/tools/test_shell/test_shell.gyp:*',
58 '../webkit/webkit.gyp:*', 58 '../webkit/webkit.gyp:*',
59 'temp_gyp/googleurl.gyp:*', 59 'temp_gyp/googleurl.gyp:*',
60 'temp_gyp/v8.gyp:*', 60 'temp_gyp/v8.gyp:*',
61 ], 61 ],
62 }], 62 }],
63 ], 63 ],
64 }, 64 },
65 ], 65 ],
66 } 66 }
67 67
OLDNEW
« no previous file with comments | « no previous file | printing/printing.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698