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

Side by Side Diff: build/all.gyp

Issue 10832007: Enabling breakpad on iOS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 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 | « breakpad/breakpad.gyp ('k') | no next file » | 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) 2012 The Chromium Authors. All rights reserved. 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 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 ['os_posix==1 and OS!="android" and OS!="ios"', { 71 ['os_posix==1 and OS!="android" and OS!="ios"', {
72 'dependencies': [ 72 'dependencies': [
73 '../third_party/yasm/yasm.gyp:*#host', 73 '../third_party/yasm/yasm.gyp:*#host',
74 ], 74 ],
75 }], 75 }],
76 ['OS=="mac" or OS=="ios" or OS=="win"', { 76 ['OS=="mac" or OS=="ios" or OS=="win"', {
77 'dependencies': [ 77 'dependencies': [
78 '../third_party/nss/nss.gyp:*', 78 '../third_party/nss/nss.gyp:*',
79 ], 79 ],
80 }], 80 }],
81 ['OS=="win" or OS=="ios" or OS=="linux"', {
82 'dependencies': [
83 '../breakpad/breakpad.gyp:*',
84 ],
85 }],
81 ['OS=="mac"', { 86 ['OS=="mac"', {
82 'dependencies': [ 87 'dependencies': [
83 '../third_party/ocmock/ocmock.gyp:*', 88 '../third_party/ocmock/ocmock.gyp:*',
84 ], 89 ],
85 }], 90 }],
86 ['OS=="linux"', { 91 ['OS=="linux"', {
87 'dependencies': [ 92 'dependencies': [
88 '../breakpad/breakpad.gyp:*',
89 '../courgette/courgette.gyp:*', 93 '../courgette/courgette.gyp:*',
90 '../dbus/dbus.gyp:*', 94 '../dbus/dbus.gyp:*',
91 '../sandbox/sandbox.gyp:*', 95 '../sandbox/sandbox.gyp:*',
92 ], 96 ],
93 'conditions': [ 97 'conditions': [
94 ['branding=="Chrome"', { 98 ['branding=="Chrome"', {
95 'dependencies': [ 99 'dependencies': [
96 '../chrome/chrome.gyp:linux_packages_<(channel)', 100 '../chrome/chrome.gyp:linux_packages_<(channel)',
97 ], 101 ],
98 }], 102 }],
99 ], 103 ],
100 }], 104 }],
101 ['toolkit_uses_gtk==1', { 105 ['toolkit_uses_gtk==1', {
102 'dependencies': [ 106 'dependencies': [
103 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*', 107 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*',
104 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', 108 '../tools/xdisplaycheck/xdisplaycheck.gyp:*',
105 ], 109 ],
106 }], 110 }],
107 ['OS=="win"', { 111 ['OS=="win"', {
108 'conditions': [ 112 'conditions': [
109 ['win_use_allocator_shim==1', { 113 ['win_use_allocator_shim==1', {
110 'dependencies': [ 114 'dependencies': [
111 '../base/allocator/allocator.gyp:*', 115 '../base/allocator/allocator.gyp:*',
112 ], 116 ],
113 }], 117 }],
114 ], 118 ],
115 'dependencies': [ 119 'dependencies': [
116 '../breakpad/breakpad.gyp:*',
117 '../chrome_frame/chrome_frame.gyp:*', 120 '../chrome_frame/chrome_frame.gyp:*',
118 '../cloud_print/cloud_print.gyp:*', 121 '../cloud_print/cloud_print.gyp:*',
119 '../courgette/courgette.gyp:*', 122 '../courgette/courgette.gyp:*',
120 '../rlz/rlz.gyp:*', 123 '../rlz/rlz.gyp:*',
121 '../sandbox/sandbox.gyp:*', 124 '../sandbox/sandbox.gyp:*',
122 '../third_party/angle/src/build_angle.gyp:*', 125 '../third_party/angle/src/build_angle.gyp:*',
123 '../third_party/bsdiff/bsdiff.gyp:*', 126 '../third_party/bsdiff/bsdiff.gyp:*',
124 '../third_party/bspatch/bspatch.gyp:*', 127 '../third_party/bspatch/bspatch.gyp:*',
125 '../third_party/gles2_book/gles2_book.gyp:*', 128 '../third_party/gles2_book/gles2_book.gyp:*',
126 '../tools/memory_watcher/memory_watcher.gyp:*', 129 '../tools/memory_watcher/memory_watcher.gyp:*',
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 'dependencies': [ 690 'dependencies': [
688 '../chromeos/chromeos.gyp:chromeos_unittests', 691 '../chromeos/chromeos.gyp:chromeos_unittests',
689 ], 692 ],
690 }], 693 }],
691 ], 694 ],
692 }, 695 },
693 ], # targets 696 ], # targets
694 }], # "use_aura==1" 697 }], # "use_aura==1"
695 ], # conditions 698 ], # conditions
696 } 699 }
OLDNEW
« no previous file with comments | « breakpad/breakpad.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698