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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 ['exclude', 'base/x/active_window_watcher_x.h'], | 348 ['exclude', 'base/x/active_window_watcher_x.h'], |
348 ], | 349 ], |
349 }, { # use_aura!=1 | 350 }, { # use_aura!=1 |
350 'sources!': [ | 351 'sources!': [ |
351 'gfx/native_theme_aura.cc', | 352 'gfx/native_theme_aura.cc', |
352 'gfx/native_theme_aura.h', | 353 'gfx/native_theme_aura.h', |
353 ] | 354 ] |
354 }], | 355 }], |
355 ['use_aura==1 and OS=="win"', { | 356 ['use_aura==1 and OS=="win"', { |
356 'sources/': [ | 357 'sources/': [ |
357 ['exclude', 'base/dragdrop/os_exchange_data_provider_aura.cc'], | 358 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.cc'], |
| 359 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.h'], |
358 ['exclude', 'gfx/native_theme_win.cc'], | 360 ['exclude', 'gfx/native_theme_win.cc'], |
359 ['exclude', 'gfx/native_theme_win.h'], | 361 ['exclude', 'gfx/native_theme_win.h'], |
360 ['exclude', 'gfx/path_win.cc'], | 362 ['exclude', 'gfx/path_win.cc'], |
361 ], | 363 ], |
362 }], | 364 }], |
363 ['use_glib == 1', { | 365 ['use_glib == 1', { |
364 'dependencies': [ | 366 'dependencies': [ |
365 # font_gtk.cc uses fontconfig. | 367 # font_gtk.cc uses fontconfig. |
366 '../build/linux/system.gyp:fontconfig', | 368 '../build/linux/system.gyp:fontconfig', |
367 '../build/linux/system.gyp:glib', | 369 '../build/linux/system.gyp:glib', |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 642 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
641 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 643 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
642 ] | 644 ] |
643 } | 645 } |
644 ], | 646 ], |
645 }, | 647 }, |
646 ], | 648 ], |
647 }], | 649 }], |
648 ], | 650 ], |
649 } | 651 } |
OLD | NEW |