| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 | 8 |
| 9 'variables': { | 9 'variables': { |
| 10 'version_py_path': 'tools/build/version.py', | 10 'version_py_path': 'tools/build/version.py', |
| (...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 'common/win_safe_util.h', | 691 'common/win_safe_util.h', |
| 692 'common/worker_messages.h', | 692 'common/worker_messages.h', |
| 693 'common/worker_messages_internal.h', | 693 'common/worker_messages_internal.h', |
| 694 'common/worker_thread_ticker.cc', | 694 'common/worker_thread_ticker.cc', |
| 695 'common/worker_thread_ticker.h', | 695 'common/worker_thread_ticker.h', |
| 696 'common/x11_util.cc', | 696 'common/x11_util.cc', |
| 697 'common/x11_util.h', | 697 'common/x11_util.h', |
| 698 'common/x11_util_internal.h', | 698 'common/x11_util_internal.h', |
| 699 'common/zip.cc', # Requires zlib directly. | 699 'common/zip.cc', # Requires zlib directly. |
| 700 'common/zip.h', | 700 'common/zip.h', |
| 701 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', | |
| 702 ], | 701 ], |
| 703 'direct_dependent_settings': { | 702 'direct_dependent_settings': { |
| 704 'include_dirs': [ | 703 'include_dirs': [ |
| 705 '..', | 704 '..', |
| 706 ], | 705 ], |
| 707 }, | 706 }, |
| 708 'export_dependent_settings': [ | 707 'export_dependent_settings': [ |
| 709 '../app/app.gyp:app_base', | 708 '../app/app.gyp:app_base', |
| 710 ], | 709 ], |
| 711 'conditions': [ | 710 'conditions': [ |
| 712 ['OS=="linux"', { | 711 ['OS=="linux"', { |
| 713 'dependencies': [ | 712 'dependencies': [ |
| 714 '../build/linux/system.gyp:gtk', | 713 '../build/linux/system.gyp:gtk', |
| 715 ], | 714 ], |
| 716 'export_dependent_settings': [ | 715 'export_dependent_settings': [ |
| 717 '../third_party/sqlite/sqlite.gyp:sqlite', | 716 '../third_party/sqlite/sqlite.gyp:sqlite', |
| 718 ], | 717 ], |
| 719 'link_settings': { | 718 'link_settings': { |
| 720 'libraries': [ | 719 'libraries': [ |
| 721 '-lX11', | 720 '-lX11', |
| 722 '-lXrender', | 721 '-lXrender', |
| 723 '-lXext', | 722 '-lXext', |
| 724 ], | 723 ], |
| 725 }, | 724 }, |
| 726 }, { # else: 'OS!="linux"' | 725 },], |
| 727 'sources!': [ | |
| 728 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', | |
| 729 ], | |
| 730 }], | |
| 731 ['OS=="linux" and selinux==1', { | 726 ['OS=="linux" and selinux==1', { |
| 732 'dependencies': [ | 727 'dependencies': [ |
| 733 '../build/linux/system.gyp:selinux', | 728 '../build/linux/system.gyp:selinux', |
| 734 ], | 729 ], |
| 735 }], | 730 }], |
| 736 ['OS=="win"', { | 731 ['OS=="win"', { |
| 737 'include_dirs': [ | 732 'include_dirs': [ |
| 738 'third_party/wtl/include', | 733 'third_party/wtl/include', |
| 739 ], | 734 ], |
| 740 }, { # else: OS != "win" | 735 }, { # else: OS != "win" |
| (...skipping 6229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6970 ] | 6965 ] |
| 6971 }], | 6966 }], |
| 6972 ], # 'conditions' | 6967 ], # 'conditions' |
| 6973 } | 6968 } |
| 6974 | 6969 |
| 6975 # Local Variables: | 6970 # Local Variables: |
| 6976 # tab-width:2 | 6971 # tab-width:2 |
| 6977 # indent-tabs-mode:nil | 6972 # indent-tabs-mode:nil |
| 6978 # End: | 6973 # End: |
| 6979 # vim: set expandtab tabstop=2 shiftwidth=2: | 6974 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |