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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 }], | 419 }], |
420 [ 'toolkit_uses_gtk==0', { | 420 [ 'toolkit_uses_gtk==0', { |
421 'sources!': [ 'message_pump_gtk.cc', ], | 421 'sources!': [ 'message_pump_gtk.cc', ], |
422 }], | 422 }], |
423 [ '(touchui==0 and use_aura==0) or OS == "win"', { | 423 [ '(touchui==0 and use_aura==0) or OS == "win"', { |
424 'sources!' : [ 'message_pump_x.cc', ], | 424 'sources!' : [ 'message_pump_x.cc', ], |
425 }, { | 425 }, { |
426 'sources!' : [ 'message_pump_gtk.cc', ], | 426 'sources!' : [ 'message_pump_gtk.cc', ], |
427 'sources/' : [ [ 'include', 'message_pump_x.cc', ] ], | 427 'sources/' : [ [ 'include', 'message_pump_x.cc', ] ], |
428 }], | 428 }], |
429 [ 'OS != "linux"', { | 429 [ 'OS != "linux" and OS != "openbsd"', { |
430 'sources!': [ | 430 'sources!': [ |
431 # Not automatically excluded by the *linux.cc rules. | 431 # Not automatically excluded by the *linux.cc rules. |
432 'linux_util.cc', | 432 'linux_util.cc', |
433 ], | 433 ], |
434 }, | 434 }, |
435 ], | 435 ], |
436 [ 'OS == "android"', { | 436 [ 'OS == "android"', { |
437 'sources/': [ | 437 'sources/': [ |
438 ['exclude', '^debug/stack_trace.cc'], | 438 ['exclude', '^debug/stack_trace.cc'], |
439 ['exclude', '^debug/stack_trace_posix.cc'], | 439 ['exclude', '^debug/stack_trace_posix.cc'], |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 'files/file_path_watcher_stub.cc', | 494 'files/file_path_watcher_stub.cc', |
495 ], | 495 ], |
496 }], | 496 }], |
497 [ 'OS == "mac"', { | 497 [ 'OS == "mac"', { |
498 'sources!': [ | 498 'sources!': [ |
499 'files/file_path_watcher_stub.cc', | 499 'files/file_path_watcher_stub.cc', |
500 ], | 500 ], |
501 }], | 501 }], |
502 [ 'OS == "openbsd"', { | 502 [ 'OS == "openbsd"', { |
503 'sources/': [ | 503 'sources/': [ |
504 ['include', '^base_paths_linux\\.cc$'], | 504 ['exclude', '^files/file_path_watcher_linux\\.cc$'], |
505 ['include', '^native_library_linux\\.cc$'], | 505 ['exclude', '^file_util_linux\\.cc$'], |
506 ['include', '^sys_string_conversions_linux\\.cc$'], | 506 ['exclude', '^process_linux\\.cc$'], |
| 507 ['exclude', '^process_util_linux\\.cc$'], |
| 508 ['exclude', '^sys_info_linux\\.cc$'], |
507 ], | 509 ], |
508 }], | 510 }], |
509 ], | 511 ], |
510 }], | 512 }], |
511 ], | 513 ], |
512 }, | 514 }, |
513 'targets': [ | 515 'targets': [ |
514 { | 516 { |
515 'target_name': 'base', | 517 'target_name': 'base', |
516 'type': '<(component)', | 518 'type': '<(component)', |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
816 'third_party/xdg_mime/xdgmimemagic.c', | 818 'third_party/xdg_mime/xdgmimemagic.c', |
817 'third_party/xdg_mime/xdgmimemagic.h', | 819 'third_party/xdg_mime/xdgmimemagic.h', |
818 'third_party/xdg_mime/xdgmimeparent.c', | 820 'third_party/xdg_mime/xdgmimeparent.c', |
819 'third_party/xdg_mime/xdgmimeparent.h', | 821 'third_party/xdg_mime/xdgmimeparent.h', |
820 ], | 822 ], |
821 }, | 823 }, |
822 ], | 824 ], |
823 }], | 825 }], |
824 ], | 826 ], |
825 } | 827 } |
OLD | NEW |