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

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

Issue 147373005: Move webkit/common/webpreferences to content/public/common/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'data_element.h', 50 'data_element.h',
51 'resource_devtools_info.cc', 51 'resource_devtools_info.cc',
52 'resource_devtools_info.h', 52 'resource_devtools_info.h',
53 'resource_request_body.cc', 53 'resource_request_body.cc',
54 'resource_request_body.h', 54 'resource_request_body.h',
55 'resource_response_info.cc', 55 'resource_response_info.cc',
56 'resource_response_info.h', 56 'resource_response_info.h',
57 'resource_type.cc', 57 'resource_type.cc',
58 'resource_type.h', 58 'resource_type.h',
59 'webkit_common_export.h', 59 'webkit_common_export.h',
60 'webpreferences.cc',
61 'webpreferences.h',
62 ], 60 ],
63 61
64 'conditions': [ 62 'conditions': [
65 ['toolkit_uses_gtk == 1', { 63 ['toolkit_uses_gtk == 1', {
66 'dependencies': [ 64 'dependencies': [
67 '<(DEPTH)/build/linux/system.gyp:gtk', 65 '<(DEPTH)/build/linux/system.gyp:gtk',
68 ], 66 ],
69 'sources/': [['exclude', '_x11\\.cc$']], 67 'sources/': [['exclude', '_x11\\.cc$']],
70 }], 68 }],
71 ['use_aura==1', { 69 ['use_aura==1', {
(...skipping 20 matching lines...) Expand all
92 }, 90 },
93 }], 91 }],
94 ['OS=="win"', { 92 ['OS=="win"', {
95 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 93 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
96 'msvs_disabled_warnings': [ 4800, 4267 ], 94 'msvs_disabled_warnings': [ 4800, 4267 ],
97 }], 95 }],
98 ], 96 ],
99 }, 97 },
100 ], 98 ],
101 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698