Chromium Code Reviews| 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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 361 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fr ameworks', | 361 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fr ameworks', |
| 362 ], | 362 ], |
| 363 'conditions': [ | 363 'conditions': [ |
| 364 [ 'toolkit_uses_gtk==0', { | 364 [ 'toolkit_uses_gtk==0', { |
| 365 'sources/': [ | 365 'sources/': [ |
| 366 ['exclude', '^nix/'], | 366 ['exclude', '^nix/'], |
| 367 ], | 367 ], |
| 368 'sources!': [ | 368 'sources!': [ |
| 369 'atomicops_internals_x86_gcc.cc', | 369 'atomicops_internals_x86_gcc.cc', |
| 370 'message_pump_glib.cc', | 370 'message_pump_glib.cc', |
| 371 'message_pump_glib_x.cc', | 371 'message_pump_gtk.cc', |
| 372 'message_pump_x.cc', | |
| 372 ], | 373 ], |
| 373 }], | 374 }], |
| 375 [ 'touchui==0', { | |
| 376 'sources!' : [ 'message_pump_x.*', ], | |
|
Evan Martin
2011/06/24 17:33:15
I don't think gyp understands wildcards like this.
sadrul
2011/06/24 18:12:54
Indeed. Fixed.
| |
| 377 }, { | |
| 378 'sources!' : [ 'message_pump_gtk.*', ], | |
| 379 }], | |
| 374 [ 'OS != "linux"', { | 380 [ 'OS != "linux"', { |
| 375 'sources!': [ | 381 'sources!': [ |
| 376 # Not automatically excluded by the *linux.cc rules. | 382 # Not automatically excluded by the *linux.cc rules. |
| 377 'gtk_util.cc', | 383 'gtk_util.cc', |
| 378 'gtk_util.h', | 384 'gtk_util.h', |
| 379 'linux_util.cc', | 385 'linux_util.cc', |
| 380 ], | 386 ], |
| 381 }, | 387 }, |
| 382 ], | 388 ], |
| 383 [ 'OS != "mac"', { | 389 [ 'OS != "mac"', { |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 564 'event_recorder.h', | 570 'event_recorder.h', |
| 565 'event_recorder_stubs.cc', | 571 'event_recorder_stubs.cc', |
| 566 'file_descriptor_shuffle.cc', | 572 'file_descriptor_shuffle.cc', |
| 567 'file_descriptor_shuffle.h', | 573 'file_descriptor_shuffle.h', |
| 568 'linux_util.cc', | 574 'linux_util.cc', |
| 569 'linux_util.h', | 575 'linux_util.h', |
| 570 'md5.cc', | 576 'md5.cc', |
| 571 'md5.h', | 577 'md5.h', |
| 572 'message_pump_glib.cc', | 578 'message_pump_glib.cc', |
| 573 'message_pump_glib.h', | 579 'message_pump_glib.h', |
| 574 'message_pump_glib_x.cc', | 580 'message_pump_gtk.cc', |
| 575 'message_pump_glib_x.h', | 581 'message_pump_gtk.h', |
| 576 'message_pump_glib_x_dispatch.h', | 582 'message_pump_x.cc', |
| 583 'message_pump_x.h', | |
| 577 'message_pump_libevent.cc', | 584 'message_pump_libevent.cc', |
| 578 'message_pump_libevent.h', | 585 'message_pump_libevent.h', |
| 579 'message_pump_mac.h', | 586 'message_pump_mac.h', |
| 580 'message_pump_mac.mm', | 587 'message_pump_mac.mm', |
| 581 'metrics/field_trial.cc', | 588 'metrics/field_trial.cc', |
| 582 'metrics/field_trial.h', | 589 'metrics/field_trial.h', |
| 583 'string16.cc', | 590 'string16.cc', |
| 584 'string16.h', | 591 'string16.h', |
| 585 'sync_socket.h', | 592 'sync_socket.h', |
| 586 'sync_socket_win.cc', | 593 'sync_socket_win.cc', |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 676 'third_party/xdg_mime/xdgmimemagic.c', | 683 'third_party/xdg_mime/xdgmimemagic.c', |
| 677 'third_party/xdg_mime/xdgmimemagic.h', | 684 'third_party/xdg_mime/xdgmimemagic.h', |
| 678 'third_party/xdg_mime/xdgmimeparent.c', | 685 'third_party/xdg_mime/xdgmimeparent.c', |
| 679 'third_party/xdg_mime/xdgmimeparent.h', | 686 'third_party/xdg_mime/xdgmimeparent.h', |
| 680 ], | 687 ], |
| 681 }, | 688 }, |
| 682 ], | 689 ], |
| 683 }], | 690 }], |
| 684 ], | 691 ], |
| 685 } | 692 } |
| OLD | NEW |