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 }, | 8 }, |
9 'target_defaults': { | 9 'target_defaults': { |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 'base/dragdrop/drag_drop_types_win.cc', | 88 'base/dragdrop/drag_drop_types_win.cc', |
89 'base/dragdrop/drag_source.cc', | 89 'base/dragdrop/drag_source.cc', |
90 'base/dragdrop/drag_source.h', | 90 'base/dragdrop/drag_source.h', |
91 'base/dragdrop/drop_target.cc', | 91 'base/dragdrop/drop_target.cc', |
92 'base/dragdrop/drop_target.h', | 92 'base/dragdrop/drop_target.h', |
93 'base/dragdrop/gtk_dnd_util.cc', | 93 'base/dragdrop/gtk_dnd_util.cc', |
94 'base/dragdrop/gtk_dnd_util.h', | 94 'base/dragdrop/gtk_dnd_util.h', |
95 'base/dragdrop/os_exchange_data.cc', | 95 'base/dragdrop/os_exchange_data.cc', |
96 'base/dragdrop/os_exchange_data.h', | 96 'base/dragdrop/os_exchange_data.h', |
97 'base/dragdrop/os_exchange_data_provider_aura.cc', | 97 'base/dragdrop/os_exchange_data_provider_aura.cc', |
| 98 'base/dragdrop/os_exchange_data_provider_aura.h', |
98 'base/dragdrop/os_exchange_data_provider_gtk.cc', | 99 'base/dragdrop/os_exchange_data_provider_gtk.cc', |
99 'base/dragdrop/os_exchange_data_provider_gtk.h', | 100 'base/dragdrop/os_exchange_data_provider_gtk.h', |
100 'base/dragdrop/os_exchange_data_provider_win.cc', | 101 'base/dragdrop/os_exchange_data_provider_win.cc', |
101 'base/dragdrop/os_exchange_data_provider_win.h', | 102 'base/dragdrop/os_exchange_data_provider_win.h', |
102 'base/events.h', | 103 'base/events.h', |
103 'base/gtk/event_synthesis_gtk.cc', | 104 'base/gtk/event_synthesis_gtk.cc', |
104 'base/gtk/event_synthesis_gtk.h', | 105 'base/gtk/event_synthesis_gtk.h', |
105 'base/gtk/g_object_destructor_filo.cc', | 106 'base/gtk/g_object_destructor_filo.cc', |
106 'base/gtk/g_object_destructor_filo.h', | 107 'base/gtk/g_object_destructor_filo.h', |
107 'base/gtk/gtk_expanded_container.cc', | 108 'base/gtk/gtk_expanded_container.cc', |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 ], | 337 ], |
337 }, { # use_aura!=1 | 338 }, { # use_aura!=1 |
338 'sources!': [ | 339 'sources!': [ |
339 'gfx/native_theme_aura.cc', | 340 'gfx/native_theme_aura.cc', |
340 'gfx/native_theme_aura.h', | 341 'gfx/native_theme_aura.h', |
341 ] | 342 ] |
342 }], | 343 }], |
343 ['use_aura==1 and OS=="win"', { | 344 ['use_aura==1 and OS=="win"', { |
344 'sources/': [ | 345 'sources/': [ |
345 ['exclude', 'base/dragdrop/os_exchange_data_provider_aura.cc'], | 346 ['exclude', 'base/dragdrop/os_exchange_data_provider_aura.cc'], |
| 347 ['exclude', 'base/dragdrop/os_exchange_data_provider_aura.h'], |
346 ['exclude', 'gfx/native_theme_win.cc'], | 348 ['exclude', 'gfx/native_theme_win.cc'], |
347 ['exclude', 'gfx/native_theme_win.h'], | 349 ['exclude', 'gfx/native_theme_win.h'], |
348 ['exclude', 'gfx/path_win.cc'], | 350 ['exclude', 'gfx/path_win.cc'], |
349 ], | 351 ], |
350 }], | 352 }], |
351 ['use_glib == 1', { | 353 ['use_glib == 1', { |
352 'dependencies': [ | 354 'dependencies': [ |
353 # font_gtk.cc uses fontconfig. | 355 # font_gtk.cc uses fontconfig. |
354 '../build/linux/system.gyp:fontconfig', | 356 '../build/linux/system.gyp:fontconfig', |
355 '../build/linux/system.gyp:glib', | 357 '../build/linux/system.gyp:glib', |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 621 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
620 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 622 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
621 ] | 623 ] |
622 } | 624 } |
623 ], | 625 ], |
624 }, | 626 }, |
625 ], | 627 ], |
626 }], | 628 }], |
627 ], | 629 ], |
628 } | 630 } |
OLD | NEW |