OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 '<(DEPTH)/ui/ui.gyp:ui', | 109 '<(DEPTH)/ui/ui.gyp:ui', |
110 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent', | 110 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent', |
111 '<(DEPTH)/webkit/renderer/webkit_renderer.gyp:webkit_renderer', | 111 '<(DEPTH)/webkit/renderer/webkit_renderer.gyp:webkit_renderer', |
112 'glue', | 112 'glue', |
113 'webkit_support_gfx', | 113 'webkit_support_gfx', |
114 ], | 114 ], |
115 'export_dependent_settings': [ | 115 'export_dependent_settings': [ |
116 '<(DEPTH)/base/base.gyp:base', | 116 '<(DEPTH)/base/base.gyp:base', |
117 ], | 117 ], |
118 'sources': [ | 118 'sources': [ |
119 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_context.cc', | |
120 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_context.h', | |
121 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_options.cc', | |
122 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_options.h', | |
123 '<(DEPTH)/webkit/browser/quota/mock_special_storage_policy.cc', | |
124 '<(DEPTH)/webkit/browser/quota/mock_special_storage_policy.h', | |
125 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.h', | 119 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.h', |
126 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.m', | 120 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.m', |
127 '<(DEPTH)/webkit/support/mock_webclipboard_impl.cc', | 121 '<(DEPTH)/webkit/support/mock_webclipboard_impl.cc', |
128 '<(DEPTH)/webkit/support/mock_webclipboard_impl.h', | 122 '<(DEPTH)/webkit/support/mock_webclipboard_impl.h', |
129 '<(DEPTH)/webkit/support/test_shell_webblobregistry_impl.cc', | 123 '<(DEPTH)/webkit/support/test_shell_webblobregistry_impl.cc', |
130 '<(DEPTH)/webkit/support/test_shell_webblobregistry_impl.h', | 124 '<(DEPTH)/webkit/support/test_shell_webblobregistry_impl.h', |
131 ], | 125 ], |
132 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 126 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
133 'msvs_disabled_warnings': [ 4267, ], | 127 'msvs_disabled_warnings': [ 4267, ], |
134 }, | 128 }, |
(...skipping 14 matching lines...) Expand all Loading... |
149 '<(DEPTH)', | 143 '<(DEPTH)', |
150 ], | 144 ], |
151 'conditions': [ | 145 'conditions': [ |
152 ['OS=="android"', { | 146 ['OS=="android"', { |
153 'toolsets': ['target', 'host'], | 147 'toolsets': ['target', 'host'], |
154 }], | 148 }], |
155 ], | 149 ], |
156 }, | 150 }, |
157 ], | 151 ], |
158 } | 152 } |
OLD | NEW |