OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'target_defaults': { | 9 'target_defaults': { |
10 'sources/': [ | 10 'sources/': [ |
(...skipping 13 matching lines...) Expand all Loading... |
24 ]}, { # else: OS != "mac" | 24 ]}, { # else: OS != "mac" |
25 'sources/': [ | 25 'sources/': [ |
26 ['exclude', '\\.mm?$'], | 26 ['exclude', '\\.mm?$'], |
27 ], | 27 ], |
28 }], | 28 }], |
29 ['OS=="win"', {'sources/': [ | 29 ['OS=="win"', {'sources/': [ |
30 ['include', '_(win)\\.cc$'], | 30 ['include', '_(win)\\.cc$'], |
31 ['include', '/win/'], | 31 ['include', '/win/'], |
32 ['include', '/win_[^/]*\\.cc$'], | 32 ['include', '/win_[^/]*\\.cc$'], |
33 ]}], | 33 ]}], |
| 34 ['touchui==0', {'sources/': [ |
| 35 ['exclude', 'touchui/'], |
| 36 ]}], |
34 ], | 37 ], |
35 }, | 38 }, |
36 'targets': [ | 39 'targets': [ |
37 { | 40 { |
38 'target_name': 'views', | 41 'target_name': 'views', |
39 'type': '<(library)', | 42 'type': '<(library)', |
40 'msvs_guid': '6F9258E5-294F-47B2-919D-17FFE7A8B751', | 43 'msvs_guid': '6F9258E5-294F-47B2-919D-17FFE7A8B751', |
41 'dependencies': [ | 44 'dependencies': [ |
42 '../app/app.gyp:app_base', | 45 '../app/app.gyp:app_base', |
43 '../app/app.gyp:app_strings', | 46 '../app/app.gyp:app_strings', |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 'mouse_watcher.cc', | 256 'mouse_watcher.cc', |
254 'mouse_watcher.h', | 257 'mouse_watcher.h', |
255 'painter.cc', | 258 'painter.cc', |
256 'painter.h', | 259 'painter.h', |
257 'repeat_controller.cc', | 260 'repeat_controller.cc', |
258 'repeat_controller.h', | 261 'repeat_controller.h', |
259 'screen.h', | 262 'screen.h', |
260 'screen_gtk.cc', | 263 'screen_gtk.cc', |
261 'screen_win.cc', | 264 'screen_win.cc', |
262 'standard_layout.h', | 265 'standard_layout.h', |
| 266 'touchui/gesture_manager.h', |
| 267 'touchui/gesture_manager.cc', |
263 'view.cc', | 268 'view.cc', |
264 'view.h', | 269 'view.h', |
265 'view_constants.cc', | 270 'view_constants.cc', |
266 'view_constants.h', | 271 'view_constants.h', |
267 'view_gtk.cc', | 272 'view_gtk.cc', |
268 'view_text_utils.cc', | 273 'view_text_utils.cc', |
269 'view_text_utils.h', | 274 'view_text_utils.h', |
270 'view_win.cc', | 275 'view_win.cc', |
271 'views_delegate.h', | 276 'views_delegate.h', |
272 'widget/aero_tooltip_manager.cc', | 277 'widget/aero_tooltip_manager.cc', |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 'controls/tree/tree_view.cc', | 357 'controls/tree/tree_view.cc', |
353 'event_win.cc', | 358 'event_win.cc', |
354 'resize_corner.cc', | 359 'resize_corner.cc', |
355 'widget/aero_tooltip_manager.cc', | 360 'widget/aero_tooltip_manager.cc', |
356 'widget/root_view_drop_target.cc', | 361 'widget/root_view_drop_target.cc', |
357 'window/hit_test.cc', | 362 'window/hit_test.cc', |
358 'window/native_frame_view.cc', | 363 'window/native_frame_view.cc', |
359 'widget/widget_win.cc', | 364 'widget/widget_win.cc', |
360 ], | 365 ], |
361 }], | 366 }], |
| 367 ['touchui==1', { |
| 368 'defines': ['TOUCH_UI=1'], |
| 369 }], |
362 ['OS=="win"', { | 370 ['OS=="win"', { |
363 'sources!': [ | 371 'sources!': [ |
364 'controls/slider/slider.cc', | 372 'controls/slider/slider.cc', |
365 'controls/slider/slider.h', | 373 'controls/slider/slider.h', |
366 'controls/slider/native_slider_wrapper.h', | 374 'controls/slider/native_slider_wrapper.h', |
367 ], | 375 ], |
368 'include_dirs': [ | 376 'include_dirs': [ |
369 '<(DEPTH)/third_party/wtl/include', | 377 '<(DEPTH)/third_party/wtl/include', |
370 ], | 378 ], |
371 }], | 379 }], |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 ], | 507 ], |
500 }, | 508 }, |
501 ], | 509 ], |
502 } | 510 } |
503 | 511 |
504 # Local Variables: | 512 # Local Variables: |
505 # tab-width:2 | 513 # tab-width:2 |
506 # indent-tabs-mode:nil | 514 # indent-tabs-mode:nil |
507 # End: | 515 # End: |
508 # vim: set expandtab tabstop=2 shiftwidth=2: | 516 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |