| 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 '../build/linux/system.gyp:gtk', | 352 '../build/linux/system.gyp:gtk', |
| 353 ], | 353 ], |
| 354 'sources': [ | 354 'sources': [ |
| 355 'gfx/gtk_native_view_id_manager.cc', | 355 'gfx/gtk_native_view_id_manager.cc', |
| 356 'gfx/gtk_native_view_id_manager.h', | 356 'gfx/gtk_native_view_id_manager.h', |
| 357 'gfx/gtk_preserve_window.cc', | 357 'gfx/gtk_preserve_window.cc', |
| 358 'gfx/gtk_preserve_window.h', | 358 'gfx/gtk_preserve_window.h', |
| 359 'gfx/gtk_util.cc', | 359 'gfx/gtk_util.cc', |
| 360 'gfx/gtk_util.h', | 360 'gfx/gtk_util.h', |
| 361 ], | 361 ], |
| 362 'sources!': [ |
| 363 'base/clipboard/clipboard_aura.cc', |
| 364 ], |
| 362 }], | 365 }], |
| 363 ['use_wayland == 1', { | 366 ['use_wayland == 1', { |
| 364 'sources/': [ | 367 'sources/': [ |
| 365 ['exclude', '_(gtk|x)\\.cc$'], | 368 ['exclude', '_(gtk|x)\\.cc$'], |
| 366 ['exclude', '/(gtk|x11)_[^/]*\\.cc$'], | 369 ['exclude', '/(gtk|x11)_[^/]*\\.cc$'], |
| 367 ['include', 'base/dragdrop/gtk_dnd_util.cc'], | 370 ['include', 'base/dragdrop/gtk_dnd_util.cc'], |
| 368 ['include', 'base/dragdrop/gtk_dnd_util.h'], | 371 ['include', 'base/dragdrop/gtk_dnd_util.h'], |
| 369 ['include', 'base/dragdrop/os_exchange_data_provider_gtk.cc'], | 372 ['include', 'base/dragdrop/os_exchange_data_provider_gtk.cc'], |
| 370 ['include', 'base/dragdrop/os_exchange_data_provider_gtk.h'], | 373 ['include', 'base/dragdrop/os_exchange_data_provider_gtk.h'], |
| 371 ['include', 'base/keycodes/keyboard_code_conversion_x.cc'], | 374 ['include', 'base/keycodes/keyboard_code_conversion_x.cc'], |
| (...skipping 16 matching lines...) Expand all Loading... |
| 388 'gfx/gdi_util.cc', | 391 'gfx/gdi_util.cc', |
| 389 'gfx/gdi_util.h', | 392 'gfx/gdi_util.h', |
| 390 'gfx/icon_util.cc', | 393 'gfx/icon_util.cc', |
| 391 'gfx/icon_util.h', | 394 'gfx/icon_util.h', |
| 392 'gfx/native_theme_win.cc', | 395 'gfx/native_theme_win.cc', |
| 393 'gfx/native_theme_win.h', | 396 'gfx/native_theme_win.h', |
| 394 'gfx/win_util.cc', | 397 'gfx/win_util.cc', |
| 395 'gfx/win_util.h', | 398 'gfx/win_util.h', |
| 396 ], | 399 ], |
| 397 'sources!': [ | 400 'sources!': [ |
| 401 'base/clipboard/clipboard_aura.cc', |
| 398 'gfx/pango_util.h', | 402 'gfx/pango_util.h', |
| 399 'gfx/pango_util.cc', | 403 'gfx/pango_util.cc', |
| 400 'gfx/platform_font_pango.cc', | 404 'gfx/platform_font_pango.cc', |
| 401 'gfx/platform_font_pango.h', | 405 'gfx/platform_font_pango.h', |
| 402 ], | 406 ], |
| 403 'include_dirs': [ | 407 'include_dirs': [ |
| 404 '../', | 408 '../', |
| 405 '../third_party/wtl/include', | 409 '../third_party/wtl/include', |
| 406 ], | 410 ], |
| 407 'msvs_settings': { | 411 'msvs_settings': { |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 545 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
| 542 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 546 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
| 543 ] | 547 ] |
| 544 } | 548 } |
| 545 ], | 549 ], |
| 546 }, | 550 }, |
| 547 ], | 551 ], |
| 548 }], | 552 }], |
| 549 ], | 553 ], |
| 550 } | 554 } |
| OLD | NEW |