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

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

Issue 10827414: Factor out common Element struct from BlobData and ResourceRequestBody (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: webkit/common -> webkit/base Created 8 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
« no previous file with comments | « webkit/blob/view_blob_internals_job.cc ('k') | webkit/glue/resource_request_body.h » ('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) 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 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['inside_chromium_build==0', { 8 ['inside_chromium_build==0', {
9 'webkit_src_dir': '../../../../..', 9 'webkit_src_dir': '../../../../..',
10 },{ 10 },{
11 'webkit_src_dir': '../../third_party/WebKit', 11 'webkit_src_dir': '../../third_party/WebKit',
12 }], 12 }],
13 ], 13 ],
14 }, 14 },
15 'targets': [ 15 'targets': [
16 { 16 {
17 'target_name': 'blob', 17 'target_name': 'blob',
18 'type': '<(component)', 18 'type': '<(component)',
19 'variables': { 'enable_wexit_time_destructors': 1, }, 19 'variables': { 'enable_wexit_time_destructors': 1, },
20 'dependencies': [ 20 'dependencies': [
21 '<(DEPTH)/base/base.gyp:base', 21 '<(DEPTH)/base/base.gyp:base',
22 '<(DEPTH)/base/base.gyp:base_i18n', 22 '<(DEPTH)/base/base.gyp:base_i18n',
23 '<(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',
24 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', 24 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
25 '<(DEPTH)/net/net.gyp:net', 25 '<(DEPTH)/net/net.gyp:net',
26 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base',
26 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', 27 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
27 ], 28 ],
28 'defines': [ 29 'defines': [
29 'BLOB_IMPLEMENTATION' 30 'BLOB_IMPLEMENTATION'
30 ], 31 ],
31 'sources': [ 32 'sources': [
32 'blob_data.cc', 33 'blob_data.cc',
33 'blob_data.h', 34 'blob_data.h',
34 'blob_storage_controller.cc', 35 'blob_storage_controller.cc',
35 'blob_storage_controller.h', 36 'blob_storage_controller.h',
(...skipping 11 matching lines...) Expand all
47 'conditions': [ 48 'conditions': [
48 ['inside_chromium_build==0', { 49 ['inside_chromium_build==0', {
49 'dependencies': [ 50 'dependencies': [
50 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 51 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
51 ], 52 ],
52 }], 53 }],
53 ], 54 ],
54 }, 55 },
55 ], 56 ],
56 } 57 }
OLDNEW
« no previous file with comments | « webkit/blob/view_blob_internals_job.cc ('k') | webkit/glue/resource_request_body.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698