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

Side by Side Diff: build/all.gyp

Issue 7599018: Code to package Cloud Print Linux and Mac virtual drivers. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Style fix. Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'All', 8 'target_name': 'All',
9 'type': 'none', 9 'type': 'none',
10 'xcode_create_dependents_test_runner': 1, 10 'xcode_create_dependents_test_runner': 1,
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 'conditions': [ 59 'conditions': [
60 ['javascript_engine=="v8"', { 60 ['javascript_engine=="v8"', {
61 'dependencies': [ 61 'dependencies': [
62 '../v8/tools/gyp/v8.gyp:*', 62 '../v8/tools/gyp/v8.gyp:*',
63 ], 63 ],
64 }], 64 }],
65 ['OS=="mac" or OS=="linux"', { 65 ['OS=="mac" or OS=="linux"', {
66 'dependencies': [ 66 'dependencies': [
67 '../third_party/yasm/yasm.gyp:*#host', 67 '../third_party/yasm/yasm.gyp:*#host',
68 '../cloud_print/virtual_driver/virtual_driver_posix.gyp:*', 68 '../cloud_print/virtual_driver/virtual_driver_posix.gyp:*',
69 '../cloud_print/virtual_driver/posix/virtual_driver_posix_packaging. gyp:*',
69 ], 70 ],
70 }], 71 }],
71 ['OS=="mac" or OS=="win"', { 72 ['OS=="mac" or OS=="win"', {
72 'dependencies': [ 73 'dependencies': [
73 '../third_party/nss/nss.gyp:*', 74 '../third_party/nss/nss.gyp:*',
74 ], 75 ],
75 }], 76 }],
76 ['OS=="mac"', { 77 ['OS=="mac"', {
77 'dependencies': [ 78 'dependencies': [
78 '../third_party/ocmock/ocmock.gyp:*', 79 '../third_party/ocmock/ocmock.gyp:*',
79 ], 80 ],
80 }], 81 }],
81 ['OS=="linux"', { 82 ['OS=="linux"', {
82 'dependencies': [ 83 'dependencies': [
83 '../breakpad/breakpad.gyp:*', 84 '../breakpad/breakpad.gyp:*',
84 '../courgette/courgette.gyp:*', 85 '../courgette/courgette.gyp:*',
85 '../dbus/dbus.gyp:*', 86 '../dbus/dbus.gyp:*',
86 '../sandbox/sandbox.gyp:*', 87 '../sandbox/sandbox.gyp:*',
88 '../cloud_print/virtual_driver/posix/virtual_driver_posix_packaging. gyp:*',
87 ], 89 ],
88 'conditions': [ 90 'conditions': [
89 ['branding=="Chrome"', { 91 ['branding=="Chrome"', {
90 'dependencies': [ 92 'dependencies': [
91 '../chrome/chrome.gyp:linux_packages_<(channel)', 93 '../chrome/chrome.gyp:linux_packages_<(channel)',
92 ], 94 ],
93 }], 95 }],
94 ], 96 ],
95 }], 97 }],
96 ['use_wayland == 1', { 98 ['use_wayland == 1', {
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests', 590 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests',
589 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber_uni ttests', 591 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber_uni ttests',
590 '../views/views.gyp:views_unittests', 592 '../views/views.gyp:views_unittests',
591 'temp_gyp/googleurl.gyp:googleurl_unittests', 593 'temp_gyp/googleurl.gyp:googleurl_unittests',
592 ], 594 ],
593 }, 595 },
594 ], # targets 596 ], # targets
595 }], # "chromeos==1" 597 }], # "chromeos==1"
596 ], # conditions 598 ], # conditions
597 } 599 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698