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

Side by Side Diff: webkit/support/webkit_support.gypi

Issue 9004019: Cleanup: Removing FileSystemPathManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix Created 8 years, 12 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 'test_webplugin_page_delegate.h', 52 'test_webplugin_page_delegate.h',
53 'webkit_support.cc', 53 'webkit_support.cc',
54 'webkit_support.h', 54 'webkit_support.h',
55 'webkit_support_glue.cc', 55 'webkit_support_glue.cc',
56 'weburl_loader_mock.cc', 56 'weburl_loader_mock.cc',
57 'weburl_loader_mock.h', 57 'weburl_loader_mock.h',
58 'weburl_loader_mock_factory.cc', 58 'weburl_loader_mock_factory.cc',
59 'weburl_loader_mock_factory.h', 59 'weburl_loader_mock_factory.h',
60 'web_audio_device_mock.cc', 60 'web_audio_device_mock.cc',
61 'web_audio_device_mock.h', 61 'web_audio_device_mock.h',
62 '<(DEPTH)/webkit/fileapi/mock_file_system_options.cc',
63 '<(DEPTH)/webkit/fileapi/mock_file_system_options.h',
ericu 2012/01/03 22:34:24 Do these need to be here, given that they're in we
kinuko 2012/01/05 09:40:18 You're right, we don't need them here.
62 ], 64 ],
63 'conditions': [ 65 'conditions': [
64 ['OS=="mac"', { 66 ['OS=="mac"', {
65 'copies': [{ 67 'copies': [{
66 'destination': '<(SHARED_INTERMEDIATE_DIR)/webkit', 68 'destination': '<(SHARED_INTERMEDIATE_DIR)/webkit',
67 'files': ['../tools/test_shell/resources/textAreaResizeCorner.png'], 69 'files': ['../tools/test_shell/resources/textAreaResizeCorner.png'],
68 }], 70 }],
69 },{ # OS!="mac" 71 },{ # OS!="mac"
70 'copies': [{ 72 'copies': [{
71 'destination': '<(PRODUCT_DIR)/DumpRenderTree_resources', 73 'destination': '<(PRODUCT_DIR)/DumpRenderTree_resources',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 '<(DEPTH)/webkit/tools/test_shell/simple_socket_stream_bridge.cc', 113 '<(DEPTH)/webkit/tools/test_shell/simple_socket_stream_bridge.cc',
112 '<(DEPTH)/webkit/tools/test_shell/simple_socket_stream_bridge.h', 114 '<(DEPTH)/webkit/tools/test_shell/simple_socket_stream_bridge.h',
113 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.cc', 115 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.cc',
114 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.h', 116 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.h',
115 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.cc', 117 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.cc',
116 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.h', 118 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.h',
117 '<(DEPTH)/webkit/tools/test_shell/test_shell_webblobregistry_impl.cc', 119 '<(DEPTH)/webkit/tools/test_shell/test_shell_webblobregistry_impl.cc',
118 '<(DEPTH)/webkit/tools/test_shell/test_shell_webblobregistry_impl.h', 120 '<(DEPTH)/webkit/tools/test_shell/test_shell_webblobregistry_impl.h',
119 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.cc', 121 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.cc',
120 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h', 122 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h',
123 '<(DEPTH)/webkit/fileapi/mock_file_system_options.cc',
124 '<(DEPTH)/webkit/fileapi/mock_file_system_options.h',
121 'simple_database_system.cc', 125 'simple_database_system.cc',
122 'simple_database_system.h', 126 'simple_database_system.h',
123 ], 127 ],
124 'conditions': [ 128 'conditions': [
125 ['inside_chromium_build==0', { 129 ['inside_chromium_build==0', {
126 'dependencies': [ 130 'dependencies': [
127 'setup_third_party.gyp:third_party_headers', 131 'setup_third_party.gyp:third_party_headers',
128 ], 132 ],
129 }], 133 }],
130 ], 134 ],
(...skipping 14 matching lines...) Expand all
145 '<(DEPTH)', 149 '<(DEPTH)',
146 ], 150 ],
147 'conditions': [ 151 'conditions': [
148 ['OS=="android"', { 152 ['OS=="android"', {
149 'toolsets': ['target', 'host'], 153 'toolsets': ['target', 'host'],
150 }], 154 }],
151 ], 155 ],
152 }, 156 },
153 ], 157 ],
154 } 158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698