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

Side by Side Diff: build/all.gyp

Issue 8688005: include yasm and virtual_driver_posix deps on os_posix (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 years 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 | 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) 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:*', 51 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:*',
52 '../third_party/zlib/zlib.gyp:*', 52 '../third_party/zlib/zlib.gyp:*',
53 '../v8/tools/gyp/v8.gyp:*', 53 '../v8/tools/gyp/v8.gyp:*',
54 '../webkit/support/webkit_support.gyp:*', 54 '../webkit/support/webkit_support.gyp:*',
55 '../webkit/webkit.gyp:*', 55 '../webkit/webkit.gyp:*',
56 'util/build_util.gyp:*', 56 'util/build_util.gyp:*',
57 'temp_gyp/googleurl.gyp:*', 57 'temp_gyp/googleurl.gyp:*',
58 '<(libjpeg_gyp_path):*', 58 '<(libjpeg_gyp_path):*',
59 ], 59 ],
60 'conditions': [ 60 'conditions': [
61 ['OS=="mac" or OS=="linux"', { 61 ['os_posix==1 and OS!="android"', {
62 'dependencies': [ 62 'dependencies': [
63 '../third_party/yasm/yasm.gyp:*#host', 63 '../third_party/yasm/yasm.gyp:*#host',
64 '../cloud_print/virtual_driver/virtual_driver_posix.gyp:*', 64 '../cloud_print/virtual_driver/virtual_driver_posix.gyp:*',
65 ], 65 ],
66 }], 66 }],
67 ['OS=="mac" or OS=="win"', { 67 ['OS=="mac" or OS=="win"', {
68 'dependencies': [ 68 'dependencies': [
69 '../third_party/nss/nss.gyp:*', 69 '../third_party/nss/nss.gyp:*',
70 ], 70 ],
71 }], 71 }],
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 '../sql/sql.gyp:sql_unittests', 638 '../sql/sql.gyp:sql_unittests',
639 '../ui/ui.gyp:gfx_unittests', 639 '../ui/ui.gyp:gfx_unittests',
640 ], 640 ],
641 }], 641 }],
642 ], 642 ],
643 }, 643 },
644 ], # targets 644 ], # targets
645 }], # "use_aura==1" 645 }], # "use_aura==1"
646 ], # conditions 646 ], # conditions
647 } 647 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698