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 29 matching lines...) Expand all Loading... |
40 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit | 40 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit |
41 ], | 41 ], |
42 'defines': [ | 42 'defines': [ |
43 # Technically not a unit test but require functions available only to | 43 # Technically not a unit test but require functions available only to |
44 # unit tests. | 44 # unit tests. |
45 'UNIT_TEST' | 45 'UNIT_TEST' |
46 ], | 46 ], |
47 'sources': [ | 47 'sources': [ |
48 'drt_application_mac.h', | 48 'drt_application_mac.h', |
49 'drt_application_mac.mm', | 49 'drt_application_mac.mm', |
50 'gc_extension.cc', | |
51 'gc_extension.h', | |
52 'platform_support.h', | 50 'platform_support.h', |
53 'platform_support_android.cc', | 51 'platform_support_android.cc', |
54 'platform_support_linux.cc', | 52 'platform_support_linux.cc', |
55 'platform_support_mac.mm', | 53 'platform_support_mac.mm', |
56 'platform_support_win.cc', | 54 'platform_support_win.cc', |
57 'test_webkit_platform_support.cc', | 55 'test_webkit_platform_support.cc', |
58 'test_webkit_platform_support.h', | 56 'test_webkit_platform_support.h', |
59 'webkit_support.cc', | 57 'webkit_support.cc', |
60 'webkit_support.h', | 58 'webkit_support.h', |
61 'webkit_support_glue.cc', | 59 'webkit_support_glue.cc', |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.h', | 111 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.h', |
114 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.m', | 112 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.m', |
115 '<(DEPTH)/webkit/support/mock_webclipboard_impl.cc', | 113 '<(DEPTH)/webkit/support/mock_webclipboard_impl.cc', |
116 '<(DEPTH)/webkit/support/mock_webclipboard_impl.h', | 114 '<(DEPTH)/webkit/support/mock_webclipboard_impl.h', |
117 ], | 115 ], |
118 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 116 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
119 'msvs_disabled_warnings': [ 4267, ], | 117 'msvs_disabled_warnings': [ 4267, ], |
120 }, | 118 }, |
121 ], | 119 ], |
122 } | 120 } |
OLD | NEW |