OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 # TODO: remove this helper when we have loops in GYP | 7 # TODO: remove this helper when we have loops in GYP |
8 'apply_locales_cmd': ['python', '../chrome/tools/build/apply_locales.py',], | 8 'apply_locales_cmd': ['python', '../chrome/tools/build/apply_locales.py',], |
9 'chromium_code': 1, | 9 'chromium_code': 1, |
10 }, | 10 }, |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 'sources': [ | 58 'sources': [ |
59 # All .cc, .h, and .mm files under app/ except for tests. | 59 # All .cc, .h, and .mm files under app/ except for tests. |
60 'animation.cc', | 60 'animation.cc', |
61 'animation.h', | 61 'animation.h', |
62 'active_window_watcher_x.cc', | 62 'active_window_watcher_x.cc', |
63 'active_window_watcher_x.h', | 63 'active_window_watcher_x.h', |
64 'app_paths.h', | 64 'app_paths.h', |
65 'app_paths.cc', | 65 'app_paths.cc', |
66 'app_switches.h', | 66 'app_switches.h', |
67 'app_switches.cc', | 67 'app_switches.cc', |
| 68 'clipboard/clipboard.cc', |
| 69 'clipboard/clipboard.h', |
| 70 'clipboard/clipboard_linux.cc', |
| 71 'clipboard/clipboard_mac.mm', |
| 72 'clipboard/clipboard_util_win.cc', |
| 73 'clipboard/clipboard_util_win.h', |
| 74 'clipboard/clipboard_win.cc', |
| 75 'clipboard/scoped_clipboard_writer.cc', |
| 76 'clipboard/scoped_clipboard_writer.h', |
68 'combobox_model.h', | 77 'combobox_model.h', |
69 'drag_drop_types_gtk.cc', | 78 'drag_drop_types_gtk.cc', |
70 'drag_drop_types_win.cc', | 79 'drag_drop_types_win.cc', |
71 'drag_drop_types.h', | 80 'drag_drop_types.h', |
72 'gfx/canvas.cc', | 81 'gfx/canvas.cc', |
73 'gfx/canvas.h', | 82 'gfx/canvas.h', |
74 'gfx/canvas_linux.cc', | 83 'gfx/canvas_linux.cc', |
75 'gfx/canvas_mac.mm', | 84 'gfx/canvas_mac.mm', |
76 'gfx/canvas_win.cc', | 85 'gfx/canvas_win.cc', |
77 'gfx/font.h', | 86 'gfx/font.h', |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 'app_resources', | 205 'app_resources', |
197 '../net/net.gyp:net_test_support', | 206 '../net/net.gyp:net_test_support', |
198 '../skia/skia.gyp:skia', | 207 '../skia/skia.gyp:skia', |
199 '../testing/gtest.gyp:gtest', | 208 '../testing/gtest.gyp:gtest', |
200 '../third_party/icu/icu.gyp:icui18n', | 209 '../third_party/icu/icu.gyp:icui18n', |
201 '../third_party/icu/icu.gyp:icuuc', | 210 '../third_party/icu/icu.gyp:icuuc', |
202 '../third_party/libxml/libxml.gyp:libxml', | 211 '../third_party/libxml/libxml.gyp:libxml', |
203 ], | 212 ], |
204 'sources': [ | 213 'sources': [ |
205 'animation_unittest.cc', | 214 'animation_unittest.cc', |
| 215 'clipboard/clipboard_unittest.cc', |
206 'gfx/color_utils_unittest.cc', | 216 'gfx/color_utils_unittest.cc', |
207 'gfx/font_unittest.cc', | 217 'gfx/font_unittest.cc', |
208 'gfx/icon_util_unittest.cc', | 218 'gfx/icon_util_unittest.cc', |
209 'gfx/skbitmap_operations_unittest.cc', | 219 'gfx/skbitmap_operations_unittest.cc', |
210 'gfx/text_elider_unittest.cc', | 220 'gfx/text_elider_unittest.cc', |
211 'l10n_util_mac_unittest.mm', | 221 'l10n_util_mac_unittest.mm', |
212 'l10n_util_unittest.cc', | 222 'l10n_util_unittest.cc', |
213 'os_exchange_data_win_unittest.cc', | 223 'os_exchange_data_win_unittest.cc', |
214 'run_all_unittests.cc', | 224 'run_all_unittests.cc', |
215 'test_suite.h', | 225 'test_suite.h', |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 'process_outputs_as_sources': 1, | 370 'process_outputs_as_sources': 1, |
361 'message': 'Generating appid information in <(SHARED_INTERMEDIAT
E_DIR)/chrome/appid.h' | 371 'message': 'Generating appid information in <(SHARED_INTERMEDIAT
E_DIR)/chrome/appid.h' |
362 }, | 372 }, |
363 ], | 373 ], |
364 }, | 374 }, |
365 ], | 375 ], |
366 ], | 376 ], |
367 }, | 377 }, |
368 ], | 378 ], |
369 } | 379 } |
OLD | NEW |