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

Side by Side Diff: webkit/blob/webkit_blob.gypi

Issue 8741002: update dependencies in preparation for glue being a component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | Annotate | Revision Log
« no previous file with comments | « content/content_tests.gypi ('k') | webkit/glue/webkit_glue.gypi » ('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) 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 'variables': {
7 'conditions': [
8 ['inside_chromium_build==0', {
9 'webkit_src_dir': '../../../../..',
10 },{
11 'webkit_src_dir': '../../third_party/WebKit',
12 }],
13 ],
14 },
6 'targets': [ 15 'targets': [
7 { 16 {
8 'target_name': 'blob', 17 'target_name': 'blob',
9 'type': '<(component)', 18 'type': '<(component)',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 19 'variables': { 'enable_wexit_time_destructors': 1, },
11 'dependencies': [ 20 'dependencies': [
12 '<(DEPTH)/base/base.gyp:base', 21 '<(DEPTH)/base/base.gyp:base',
13 '<(DEPTH)/base/base.gyp:base_i18n', 22 '<(DEPTH)/base/base.gyp:base_i18n',
14 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 23 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
15 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', 24 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
(...skipping 22 matching lines...) Expand all
38 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 47 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
39 ], 48 ],
40 }], 49 }],
41 # TODO(dpranke): Figure out why this works at all and/or get 50 # TODO(dpranke): Figure out why this works at all and/or get
42 # rid of it. 51 # rid of it.
43 ['OS=="win" and component == "shared_library"', { 52 ['OS=="win" and component == "shared_library"', {
44 'dependencies': [ 53 'dependencies': [
45 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', 54 '<(DEPTH)/webkit/support/webkit_support.gyp:glue',
46 ], 55 ],
47 }], 56 }],
57 [# TODO(dpranke): Remove once the circular dependencies in
58 # WebKit.gyp are fixed on the mac.
59 # See https://bugs.webkit.org/show_bug.cgi?id=68463
60 'OS!="mac"', {
61 'dependencies': [
62 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
63 ],
64 }],
48 ], 65 ],
49 }, 66 },
50 ], 67 ],
51 } 68 }
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698