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

Side by Side Diff: webkit/webkit.gyp

Issue 8589013: Add build_webkit_exes_from_webkit_gyp flag to build/common.gypi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « build/common.gypi ('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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'includes': [ 6 'includes': [
7 '../build/win_precompile.gypi', 7 '../build/win_precompile.gypi',
8 '../third_party/WebKit/Source/WebKit/chromium/features.gypi', 8 '../third_party/WebKit/Source/WebKit/chromium/features.gypi',
9 'tools/test_shell/test_shell.gypi', 9 'tools/test_shell/test_shell.gypi',
10 ], 10 ],
11 'variables': { 11 'variables': {
12 'chromium_code': 1, 12 'chromium_code': 1,
13 }, 13 },
14 'targets': [ 14 'conditions': [
15 { 15 # TODO(dpranke): See https://bugs.webkit.org/show_bug.cgi?id=68463 ,
16 'target_name': 'pull_in_webkit_unit_tests', 16 # flag in build/common.gypi.
17 'type': 'none', 17 ['build_webkit_exes_from_webkit_gyp==1', {
18 'dependencies': [ 18 'targets': [
19 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit_unit_tes ts' 19 {
20 'target_name': 'pull_in_webkit_unit_tests',
21 'type': 'none',
22 'dependencies': [
23 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit_unit _tests'
24 ],
25 },
26 {
27 'target_name': 'pull_in_DumpRenderTree',
28 'type': 'none',
29 'dependencies': [
30 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:DumpRenderT ree'
31 ],
32 }
20 ], 33 ],
21 }, 34 }, {
22 { 35 'targets': [
23 'target_name': 'pull_in_DumpRenderTree', 36 {
24 'type': 'none', 37 'target_name': 'pull_in_webkit_unit_tests',
25 'dependencies': [ 38 'type': 'none',
26 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:DumpRenderTree' 39 'dependencies': [
40 '../third_party/WebKit/Source/WebKit/chromium/WebKitTest.gyp:webkit_ unit_tests'
41 ],
42 },
43 {
44 'target_name': 'pull_in_DumpRenderTree',
45 'type': 'none',
46 'dependencies': [
47 '../third_party/WebKit/Tools/Tools.gyp:DumpRenderTree'
48 ],
49 }
27 ], 50 ],
28 }, 51 }]
29 ], # targets 52 ], # targets
30 } 53 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698