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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'base_target': 0, | 8 'base_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 '..', | 357 '..', |
358 ], | 358 ], |
359 # These warnings are needed for the files in third_party\dmg_fp. | 359 # These warnings are needed for the files in third_party\dmg_fp. |
360 'msvs_disabled_warnings': [ | 360 'msvs_disabled_warnings': [ |
361 4244, 4554, 4018, 4102, | 361 4244, 4554, 4018, 4102, |
362 ], | 362 ], |
363 'mac_framework_dirs': [ | 363 'mac_framework_dirs': [ |
364 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fr
ameworks', | 364 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fr
ameworks', |
365 ], | 365 ], |
366 'conditions': [ | 366 'conditions': [ |
| 367 [ 'use_wayland == 1', { |
| 368 'sources!': [ |
| 369 'message_pump_gtk.cc', |
| 370 'message_pump_x.cc', |
| 371 ], |
| 372 }, { |
| 373 'sources!': [ |
| 374 'message_pump_wayland.cc', |
| 375 'message_pump_wayland.h', |
| 376 ], |
| 377 }], |
367 [ 'toolkit_uses_gtk==0', { | 378 [ 'toolkit_uses_gtk==0', { |
368 'sources/': [ | 379 'sources/': [ |
369 ['exclude', '^nix/'], | 380 ['exclude', '^nix/'], |
370 ], | 381 ], |
371 'sources!': [ | 382 'sources!': [ |
372 'atomicops_internals_x86_gcc.cc', | 383 'atomicops_internals_x86_gcc.cc', |
373 'message_pump_glib.cc', | 384 'message_pump_glib.cc', |
374 'message_pump_gtk.cc', | 385 'message_pump_gtk.cc', |
375 'message_pump_x.cc', | 386 'message_pump_x.cc', |
376 ], | 387 ], |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 'message_pump_glib.cc', | 580 'message_pump_glib.cc', |
570 'message_pump_glib.h', | 581 'message_pump_glib.h', |
571 'message_pump_gtk.cc', | 582 'message_pump_gtk.cc', |
572 'message_pump_gtk.h', | 583 'message_pump_gtk.h', |
573 'message_pump_x.cc', | 584 'message_pump_x.cc', |
574 'message_pump_x.h', | 585 'message_pump_x.h', |
575 'message_pump_libevent.cc', | 586 'message_pump_libevent.cc', |
576 'message_pump_libevent.h', | 587 'message_pump_libevent.h', |
577 'message_pump_mac.h', | 588 'message_pump_mac.h', |
578 'message_pump_mac.mm', | 589 'message_pump_mac.mm', |
| 590 'message_pump_wayland.cc', |
| 591 'message_pump_wayland.h', |
579 'metrics/field_trial.cc', | 592 'metrics/field_trial.cc', |
580 'metrics/field_trial.h', | 593 'metrics/field_trial.h', |
581 'string16.cc', | 594 'string16.cc', |
582 'string16.h', | 595 'string16.h', |
583 'sync_socket.h', | 596 'sync_socket.h', |
584 'sync_socket_win.cc', | 597 'sync_socket_win.cc', |
585 'sync_socket_posix.cc', | 598 'sync_socket_posix.cc', |
586 'time_mac.cc', | 599 'time_mac.cc', |
587 'time_posix.cc', | 600 'time_posix.cc', |
588 ], | 601 ], |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
709 'third_party/xdg_mime/xdgmimemagic.c', | 722 'third_party/xdg_mime/xdgmimemagic.c', |
710 'third_party/xdg_mime/xdgmimemagic.h', | 723 'third_party/xdg_mime/xdgmimemagic.h', |
711 'third_party/xdg_mime/xdgmimeparent.c', | 724 'third_party/xdg_mime/xdgmimeparent.c', |
712 'third_party/xdg_mime/xdgmimeparent.h', | 725 'third_party/xdg_mime/xdgmimeparent.h', |
713 ], | 726 ], |
714 }, | 727 }, |
715 ], | 728 ], |
716 }], | 729 }], |
717 ], | 730 ], |
718 } | 731 } |
OLD | NEW |