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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 'platform_file_posix.cc', | 211 'platform_file_posix.cc', |
212 'platform_file_win.cc', | 212 'platform_file_win.cc', |
213 'port.h', | 213 'port.h', |
214 'process.h', | 214 'process.h', |
215 'process_linux.cc', | 215 'process_linux.cc', |
216 'process_posix.cc', | 216 'process_posix.cc', |
217 'process_util.cc', | 217 'process_util.cc', |
218 'process_util.h', | 218 'process_util.h', |
219 'process_util_linux.cc', | 219 'process_util_linux.cc', |
220 'process_util_mac.mm', | 220 'process_util_mac.mm', |
| 221 'process_util_openbsd.cc', |
221 'process_util_posix.cc', | 222 'process_util_posix.cc', |
222 'process_util_win.cc', | 223 'process_util_win.cc', |
223 'process_win.cc', | 224 'process_win.cc', |
224 'rand_util.cc', | 225 'rand_util.cc', |
225 'rand_util.h', | 226 'rand_util.h', |
226 'rand_util_c.h', | 227 'rand_util_c.h', |
227 'rand_util_posix.cc', | 228 'rand_util_posix.cc', |
228 'rand_util_win.cc', | 229 'rand_util_win.cc', |
229 'safe_strerror_posix.cc', | 230 'safe_strerror_posix.cc', |
230 'safe_strerror_posix.h', | 231 'safe_strerror_posix.h', |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 [ 'OS == "linux"', { | 488 [ 'OS == "linux"', { |
488 'sources!': [ | 489 'sources!': [ |
489 'files/file_path_watcher_stub.cc', | 490 'files/file_path_watcher_stub.cc', |
490 ], | 491 ], |
491 }], | 492 }], |
492 [ 'OS == "mac"', { | 493 [ 'OS == "mac"', { |
493 'sources!': [ | 494 'sources!': [ |
494 'files/file_path_watcher_stub.cc', | 495 'files/file_path_watcher_stub.cc', |
495 ], | 496 ], |
496 }], | 497 }], |
| 498 [ 'OS == "openbsd"', { |
| 499 'sources/': [ |
| 500 ['include', '^base_paths_linux\\.cc$'], |
| 501 ['include', '^sys_string_conversions_linux\\.cc$'], |
| 502 ], |
| 503 }], |
497 ], | 504 ], |
498 }], | 505 }], |
499 ], | 506 ], |
500 }, | 507 }, |
501 'targets': [ | 508 'targets': [ |
502 { | 509 { |
503 'target_name': 'base', | 510 'target_name': 'base', |
504 'type': '<(component)', | 511 'type': '<(component)', |
505 'toolsets': ['host', 'target'], | 512 'toolsets': ['host', 'target'], |
506 'variables': { | 513 'variables': { |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 }, | 590 }, |
584 'conditions': [ | 591 'conditions': [ |
585 [ '_toolset=="host" and host_os=="linux"', { | 592 [ '_toolset=="host" and host_os=="linux"', { |
586 'dependencies': [ | 593 'dependencies': [ |
587 '../build/linux/system.gyp:glib', | 594 '../build/linux/system.gyp:glib', |
588 ], | 595 ], |
589 }], | 596 }], |
590 ], | 597 ], |
591 }], | 598 }], |
592 [ 'OS == "freebsd" or OS == "openbsd"', { | 599 [ 'OS == "freebsd" or OS == "openbsd"', { |
| 600 'include_dirs': [ |
| 601 '/usr/local/include', |
| 602 ], |
593 'link_settings': { | 603 'link_settings': { |
594 'libraries': [ | 604 'libraries': [ |
595 '-L/usr/local/lib -lexecinfo', | 605 '-L/usr/local/lib -lexecinfo', |
596 ], | 606 ], |
597 }, | 607 }, |
598 }, | 608 }, |
599 ], | 609 ], |
600 [ 'OS == "linux"', { | 610 [ 'OS == "linux"', { |
601 'link_settings': { | 611 'link_settings': { |
602 'libraries': [ | 612 'libraries': [ |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
798 'third_party/xdg_mime/xdgmimemagic.c', | 808 'third_party/xdg_mime/xdgmimemagic.c', |
799 'third_party/xdg_mime/xdgmimemagic.h', | 809 'third_party/xdg_mime/xdgmimemagic.h', |
800 'third_party/xdg_mime/xdgmimeparent.c', | 810 'third_party/xdg_mime/xdgmimeparent.c', |
801 'third_party/xdg_mime/xdgmimeparent.h', | 811 'third_party/xdg_mime/xdgmimeparent.h', |
802 ], | 812 ], |
803 }, | 813 }, |
804 ], | 814 ], |
805 }], | 815 }], |
806 ], | 816 ], |
807 } | 817 } |
OLD | NEW |