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

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

Issue 11103031: webkit: Merge blob and fileapi into one build target 'storage' (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Leave *.gypi files in blob and fileapi Created 8 years, 2 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
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 'webkit_blob_sources': [
8 ['inside_chromium_build==0', { 8 '../blob/blob_data.cc',
9 'webkit_src_dir': '../../../../..', 9 '../blob/blob_data.h',
10 },{ 10 '../blob/blob_storage_controller.cc',
11 'webkit_src_dir': '../../third_party/WebKit', 11 '../blob/blob_storage_controller.h',
12 }], 12 '../blob/blob_url_request_job.cc',
13 ], 13 '../blob/blob_url_request_job.h',
14 }, 14 '../blob/blob_url_request_job_factory.cc',
15 'targets': [ 15 '../blob/blob_url_request_job_factory.h',
16 { 16 '../blob/local_file_stream_reader.cc',
17 'target_name': 'blob', 17 '../blob/local_file_stream_reader.h',
18 'type': '<(component)', 18 '../blob/shareable_file_reference.cc',
19 'variables': { 'enable_wexit_time_destructors': 1, }, 19 '../blob/shareable_file_reference.h',
20 'dependencies': [ 20 '../blob/view_blob_internals_job.cc',
21 '<(DEPTH)/base/base.gyp:base', 21 '../blob/view_blob_internals_job.h',
22 '<(DEPTH)/base/base.gyp:base_i18n', 22 ],
23 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 23 },
24 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
25 '<(DEPTH)/net/net.gyp:net',
26 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base',
27 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
28 ],
29 'defines': [
30 'BLOB_IMPLEMENTATION'
31 ],
32 'sources': [
33 'blob_data.cc',
34 'blob_data.h',
35 'blob_storage_controller.cc',
36 'blob_storage_controller.h',
37 'blob_url_request_job.cc',
38 'blob_url_request_job.h',
39 'blob_url_request_job_factory.cc',
40 'blob_url_request_job_factory.h',
41 'local_file_stream_reader.cc',
42 'local_file_stream_reader.h',
43 'shareable_file_reference.cc',
44 'shareable_file_reference.h',
45 'view_blob_internals_job.cc',
46 'view_blob_internals_job.h',
47 ],
48 'conditions': [
49 ['inside_chromium_build==0', {
50 'dependencies': [
51 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
52 ],
53 }],
54 ],
55 },
56 ],
57 } 24 }
OLDNEW
« no previous file with comments | « webkit/blob/view_blob_internals_job.h ('k') | webkit/chromeos/fileapi/cros_mount_point_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698