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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 'base/dragdrop/drag_drop_types_win.cc', | 90 'base/dragdrop/drag_drop_types_win.cc', |
91 'base/dragdrop/drag_source.cc', | 91 'base/dragdrop/drag_source.cc', |
92 'base/dragdrop/drag_source.h', | 92 'base/dragdrop/drag_source.h', |
93 'base/dragdrop/drop_target.cc', | 93 'base/dragdrop/drop_target.cc', |
94 'base/dragdrop/drop_target.h', | 94 'base/dragdrop/drop_target.h', |
95 'base/dragdrop/gtk_dnd_util.cc', | 95 'base/dragdrop/gtk_dnd_util.cc', |
96 'base/dragdrop/gtk_dnd_util.h', | 96 'base/dragdrop/gtk_dnd_util.h', |
97 'base/dragdrop/os_exchange_data.cc', | 97 'base/dragdrop/os_exchange_data.cc', |
98 'base/dragdrop/os_exchange_data.h', | 98 'base/dragdrop/os_exchange_data.h', |
99 'base/dragdrop/os_exchange_data_provider_aura.cc', | 99 'base/dragdrop/os_exchange_data_provider_aura.cc', |
| 100 'base/dragdrop/os_exchange_data_provider_aura.h', |
100 'base/dragdrop/os_exchange_data_provider_gtk.cc', | 101 'base/dragdrop/os_exchange_data_provider_gtk.cc', |
101 'base/dragdrop/os_exchange_data_provider_gtk.h', | 102 'base/dragdrop/os_exchange_data_provider_gtk.h', |
102 'base/dragdrop/os_exchange_data_provider_win.cc', | 103 'base/dragdrop/os_exchange_data_provider_win.cc', |
103 'base/dragdrop/os_exchange_data_provider_win.h', | 104 'base/dragdrop/os_exchange_data_provider_win.h', |
104 'base/events.h', | 105 'base/events.h', |
105 'base/gtk/event_synthesis_gtk.cc', | 106 'base/gtk/event_synthesis_gtk.cc', |
106 'base/gtk/event_synthesis_gtk.h', | 107 'base/gtk/event_synthesis_gtk.h', |
107 'base/gtk/g_object_destructor_filo.cc', | 108 'base/gtk/g_object_destructor_filo.cc', |
108 'base/gtk/g_object_destructor_filo.h', | 109 'base/gtk/g_object_destructor_filo.h', |
109 'base/gtk/gtk_expanded_container.cc', | 110 'base/gtk/gtk_expanded_container.cc', |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 ], | 347 ], |
347 }, { # use_aura!=1 | 348 }, { # use_aura!=1 |
348 'sources!': [ | 349 'sources!': [ |
349 'gfx/native_theme_aura.cc', | 350 'gfx/native_theme_aura.cc', |
350 'gfx/native_theme_aura.h', | 351 'gfx/native_theme_aura.h', |
351 ] | 352 ] |
352 }], | 353 }], |
353 ['use_aura==1 and OS=="win"', { | 354 ['use_aura==1 and OS=="win"', { |
354 'sources/': [ | 355 'sources/': [ |
355 ['exclude', 'base/dragdrop/os_exchange_data_provider_aura.cc'], | 356 ['exclude', 'base/dragdrop/os_exchange_data_provider_aura.cc'], |
| 357 ['exclude', 'base/dragdrop/os_exchange_data_provider_aura.h'], |
356 ['exclude', 'gfx/native_theme_win.cc'], | 358 ['exclude', 'gfx/native_theme_win.cc'], |
357 ['exclude', 'gfx/native_theme_win.h'], | 359 ['exclude', 'gfx/native_theme_win.h'], |
358 ['exclude', 'gfx/path_win.cc'], | 360 ['exclude', 'gfx/path_win.cc'], |
359 ], | 361 ], |
360 }], | 362 }], |
361 ['use_glib == 1', { | 363 ['use_glib == 1', { |
362 'dependencies': [ | 364 'dependencies': [ |
363 # font_gtk.cc uses fontconfig. | 365 # font_gtk.cc uses fontconfig. |
364 '../build/linux/system.gyp:fontconfig', | 366 '../build/linux/system.gyp:fontconfig', |
365 '../build/linux/system.gyp:glib', | 367 '../build/linux/system.gyp:glib', |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
638 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 640 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
639 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 641 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
640 ] | 642 ] |
641 } | 643 } |
642 ], | 644 ], |
643 }, | 645 }, |
644 ], | 646 ], |
645 }], | 647 }], |
646 ], | 648 ], |
647 } | 649 } |
OLD | NEW |