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

Side by Side Diff: webkit/common/webkit_common.gyp

Issue 17513002: Move DataElement into webkit/common (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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/common/resource_request_body.h ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'enable_wexit_time_destructors': 1, 7 'enable_wexit_time_destructors': 1,
8 'chromium_code': 1 8 'chromium_code': 1
9 }, 9 },
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'webkit_common', 12 'target_name': 'webkit_common',
13 'type': '<(component)', 13 'type': '<(component)',
14 'defines': [ 14 'defines': [
15 'WEBKIT_COMMON_IMPLEMENTATION', 15 'WEBKIT_COMMON_IMPLEMENTATION',
16 ], 16 ],
17 'dependencies': [ 17 'dependencies': [
18 '<(DEPTH)/base/base.gyp:base_i18n', 18 '<(DEPTH)/base/base.gyp:base_i18n',
19 '<(DEPTH)/base/base.gyp:base', 19 '<(DEPTH)/base/base.gyp:base',
20 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 20 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
21 '<(DEPTH)/net/net.gyp:net', 21 '<(DEPTH)/net/net.gyp:net',
22 '<(DEPTH)/skia/skia.gyp:skia', 22 '<(DEPTH)/skia/skia.gyp:skia',
23 '<(DEPTH)/ui/ui.gyp:ui', 23 '<(DEPTH)/ui/ui.gyp:ui',
24 '<(DEPTH)/ui/ui.gyp:ui_resources', 24 '<(DEPTH)/ui/ui.gyp:ui_resources',
25 '<(DEPTH)/url/url.gyp:url_lib', 25 '<(DEPTH)/url/url.gyp:url_lib',
26 '<(DEPTH)/webkit/base/webkit_base.gyp:webkit_base',
27 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources', 26 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources',
28 ], 27 ],
29 28
30 'include_dirs': [ 29 'include_dirs': [
31 '<(INTERMEDIATE_DIR)', 30 '<(INTERMEDIATE_DIR)',
32 '<(SHARED_INTERMEDIATE_DIR)/ui', 31 '<(SHARED_INTERMEDIATE_DIR)/ui',
33 '<(SHARED_INTERMEDIATE_DIR)/webkit', 32 '<(SHARED_INTERMEDIATE_DIR)/webkit',
34 ], 33 ],
35 34
36 'sources': [ 35 'sources': [
37 'cursors/webcursor.cc', 36 'cursors/webcursor.cc',
38 'cursors/webcursor.h', 37 'cursors/webcursor.h',
39 'cursors/webcursor_android.cc', 38 'cursors/webcursor_android.cc',
40 'cursors/webcursor_aura.cc', 39 'cursors/webcursor_aura.cc',
41 'cursors/webcursor_aurawin.cc', 40 'cursors/webcursor_aurawin.cc',
42 'cursors/webcursor_aurax11.cc', 41 'cursors/webcursor_aurax11.cc',
43 'cursors/webcursor_null.cc', 42 'cursors/webcursor_null.cc',
44 'cursors/webcursor_gtk.cc', 43 'cursors/webcursor_gtk.cc',
45 'cursors/webcursor_gtk_data.h', 44 'cursors/webcursor_gtk_data.h',
46 'cursors/webcursor_mac.mm', 45 'cursors/webcursor_mac.mm',
47 'cursors/webcursor_win.cc', 46 'cursors/webcursor_win.cc',
47 'data_element.cc',
48 'data_element.h',
48 'resource_devtools_info.cc', 49 'resource_devtools_info.cc',
49 'resource_devtools_info.h', 50 'resource_devtools_info.h',
50 'resource_request_body.cc', 51 'resource_request_body.cc',
51 'resource_request_body.h', 52 'resource_request_body.h',
52 'resource_response_info.cc', 53 'resource_response_info.cc',
53 'resource_response_info.h', 54 'resource_response_info.h',
54 ], 55 ],
55 56
56 'conditions': [ 57 'conditions': [
57 ['toolkit_uses_gtk == 1', { 58 ['toolkit_uses_gtk == 1', {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 'sources/': [['exclude', '_win\\.cc$']], 90 'sources/': [['exclude', '_win\\.cc$']],
90 }, { # else: OS=="win" 91 }, { # else: OS=="win"
91 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 92 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
92 'msvs_disabled_warnings': [ 4800, 4267 ], 93 'msvs_disabled_warnings': [ 4800, 4267 ],
93 'sources/': [['exclude', '_posix\\.cc$']], 94 'sources/': [['exclude', '_posix\\.cc$']],
94 }], 95 }],
95 ], 96 ],
96 }, 97 },
97 ], 98 ],
98 } 99 }
OLDNEW
« no previous file with comments | « webkit/common/resource_request_body.h ('k') | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698