| 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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 ], | 494 ], |
| 495 }], | 495 }], |
| 496 [ 'OS == "mac"', { | 496 [ 'OS == "mac"', { |
| 497 'sources!': [ | 497 'sources!': [ |
| 498 'files/file_path_watcher_stub.cc', | 498 'files/file_path_watcher_stub.cc', |
| 499 ], | 499 ], |
| 500 }], | 500 }], |
| 501 [ 'OS == "openbsd"', { | 501 [ 'OS == "openbsd"', { |
| 502 'sources/': [ | 502 'sources/': [ |
| 503 ['include', '^base_paths_linux\\.cc$'], | 503 ['include', '^base_paths_linux\\.cc$'], |
| 504 ['include', '^native_library_linux\\.cc$'], |
| 504 ['include', '^sys_string_conversions_linux\\.cc$'], | 505 ['include', '^sys_string_conversions_linux\\.cc$'], |
| 505 ], | 506 ], |
| 506 }], | 507 }], |
| 507 ], | 508 ], |
| 508 }], | 509 }], |
| 509 ], | 510 ], |
| 510 }, | 511 }, |
| 511 'targets': [ | 512 'targets': [ |
| 512 { | 513 { |
| 513 'target_name': 'base', | 514 'target_name': 'base', |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 'cflags': [ | 778 'cflags': [ |
| 778 '-Wno-sign-compare', | 779 '-Wno-sign-compare', |
| 779 ], | 780 ], |
| 780 'cflags!': [ | 781 'cflags!': [ |
| 781 '-Wextra', | 782 '-Wextra', |
| 782 ], | 783 ], |
| 783 'sources': [ | 784 'sources': [ |
| 784 'third_party/symbolize/symbolize.cc', | 785 'third_party/symbolize/symbolize.cc', |
| 785 'third_party/symbolize/demangle.cc', | 786 'third_party/symbolize/demangle.cc', |
| 786 ], | 787 ], |
| 788 'include_dirs': [ |
| 789 '..', |
| 790 ], |
| 787 }, | 791 }, |
| 788 { | 792 { |
| 789 'target_name': 'xdg_mime', | 793 'target_name': 'xdg_mime', |
| 790 'type': 'static_library', | 794 'type': 'static_library', |
| 791 'toolsets': ['host', 'target'], | 795 'toolsets': ['host', 'target'], |
| 792 'variables': { | 796 'variables': { |
| 793 'chromium_code': 0, | 797 'chromium_code': 0, |
| 794 }, | 798 }, |
| 795 'cflags!': [ | 799 'cflags!': [ |
| 796 '-Wextra', | 800 '-Wextra', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 811 'third_party/xdg_mime/xdgmimemagic.c', | 815 'third_party/xdg_mime/xdgmimemagic.c', |
| 812 'third_party/xdg_mime/xdgmimemagic.h', | 816 'third_party/xdg_mime/xdgmimemagic.h', |
| 813 'third_party/xdg_mime/xdgmimeparent.c', | 817 'third_party/xdg_mime/xdgmimeparent.c', |
| 814 'third_party/xdg_mime/xdgmimeparent.h', | 818 'third_party/xdg_mime/xdgmimeparent.h', |
| 815 ], | 819 ], |
| 816 }, | 820 }, |
| 817 ], | 821 ], |
| 818 }], | 822 }], |
| 819 ], | 823 ], |
| 820 } | 824 } |
| OLD | NEW |