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

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: rebase 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
(Empty)
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
3 # found in the LICENSE file.
4
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 },
15 'targets': [
16 {
17 'target_name': 'blob',
18 'type': '<(component)',
19 'variables': { 'enable_wexit_time_destructors': 1, },
20 'dependencies': [
21 '<(DEPTH)/base/base.gyp:base',
22 '<(DEPTH)/base/base.gyp:base_i18n',
23 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698