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

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

Issue 357203003: Move webpreferences.* from webkit/ to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android fix - webview() -> web_view Created 6 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/BUILD.gn ('k') | webkit/common/webpreferences.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 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': [
(...skipping 25 matching lines...) Expand all
36 'include_dirs': [ 36 'include_dirs': [
37 '<(INTERMEDIATE_DIR)', 37 '<(INTERMEDIATE_DIR)',
38 '<(SHARED_INTERMEDIATE_DIR)/ui', 38 '<(SHARED_INTERMEDIATE_DIR)/ui',
39 '<(SHARED_INTERMEDIATE_DIR)/webkit', 39 '<(SHARED_INTERMEDIATE_DIR)/webkit',
40 ], 40 ],
41 41
42 'sources': [ 42 'sources': [
43 'data_element.cc', 43 'data_element.cc',
44 'data_element.h', 44 'data_element.h',
45 'webkit_common_export.h', 45 'webkit_common_export.h',
46 'webpreferences.cc',
47 'webpreferences.h',
48 ], 46 ],
49 47
50 'conditions': [ 48 'conditions': [
51 ['use_aura==1 and use_x11==1', { 49 ['use_aura==1 and use_x11==1', {
52 'dependencies': [ 50 'dependencies': [
53 '<(DEPTH)/build/linux/system.gyp:xcursor', 51 '<(DEPTH)/build/linux/system.gyp:xcursor',
54 ], 52 ],
55 }], 53 }],
56 ['OS=="mac"', { 54 ['OS=="mac"', {
57 'link_settings': { 55 'link_settings': {
58 'libraries': [ 56 'libraries': [
59 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 57 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
60 ], 58 ],
61 }, 59 },
62 }], 60 }],
63 ['OS=="win"', { 61 ['OS=="win"', {
64 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 62 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
65 'msvs_disabled_warnings': [ 4800, 4267 ], 63 'msvs_disabled_warnings': [ 4800, 4267 ],
66 }], 64 }],
67 ], 65 ],
68 }, 66 },
69 ], 67 ],
70 } 68 }
OLDNEW
« no previous file with comments | « webkit/common/BUILD.gn ('k') | webkit/common/webpreferences.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698