OLD | NEW |
---|---|
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 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows. | 8 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows. |
9 }, | 9 }, |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
295 'gfx/transform.cc', | 295 'gfx/transform.cc', |
296 ], | 296 ], |
297 'conditions': [ | 297 'conditions': [ |
298 ['use_aura==1', { | 298 ['use_aura==1', { |
299 'sources/': [ | 299 'sources/': [ |
300 ['exclude', 'gfx/gtk_'], | 300 ['exclude', 'gfx/gtk_'], |
301 ['exclude', 'gfx/screen_gtk.cc'], | 301 ['exclude', 'gfx/screen_gtk.cc'], |
302 ['exclude', 'gfx/screen_win.cc'], | 302 ['exclude', 'gfx/screen_win.cc'], |
303 ['exclude', 'base/win/mouse_wheel_util.cc'], | 303 ['exclude', 'base/win/mouse_wheel_util.cc'], |
304 ['exclude', 'base/win/mouse_wheel_util.h'], | 304 ['exclude', 'base/win/mouse_wheel_util.h'], |
305 ], | 305 ['include', 'gfx/gtk_util.cc'], |
Ben Goodger (Google)
2011/09/16 01:11:18
why?
Emmanuel Saint-loubert-Bié
2011/09/16 02:34:54
We still need under Linux. In any case it was wron
Ben Goodger (Google)
2011/09/16 14:46:55
Can you let me know of the specific instances? I'd
| |
306 ['include', 'gfx/gtk_util.h'], | |
307 ], | |
306 }], | 308 }], |
307 ['toolkit_uses_gtk == 1', { | 309 ['toolkit_uses_gtk == 1', { |
308 'dependencies': [ | 310 'dependencies': [ |
309 # font_gtk.cc uses fontconfig. | 311 # font_gtk.cc uses fontconfig. |
310 # TODO(evanm): I think this is wrong; it should just use GTK. | 312 # TODO(evanm): I think this is wrong; it should just use GTK. |
311 '../build/linux/system.gyp:fontconfig', | 313 '../build/linux/system.gyp:fontconfig', |
312 '../build/linux/system.gyp:gtk', | 314 '../build/linux/system.gyp:gtk', |
313 '../build/linux/system.gyp:x11', | 315 '../build/linux/system.gyp:x11', |
314 '../build/linux/system.gyp:xext', | 316 '../build/linux/system.gyp:xext', |
315 ], | 317 ], |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
527 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ | 529 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ |
528 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 530 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
529 ] | 531 ] |
530 } | 532 } |
531 ], | 533 ], |
532 }, | 534 }, |
533 ], | 535 ], |
534 }], | 536 }], |
535 ], | 537 ], |
536 } | 538 } |
OLD | NEW |