OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 'variables': { | 8 'variables': { |
9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
837 '../third_party/expat/expat.gyp:expat', | 837 '../third_party/expat/expat.gyp:expat', |
838 '../third_party/libjingle/libjingle.gyp:libjingle', | 838 '../third_party/libjingle/libjingle.gyp:libjingle', |
839 'sync_proto', | 839 'sync_proto', |
840 ], | 840 ], |
841 'conditions': [ | 841 'conditions': [ |
842 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 842 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
843 'dependencies': [ | 843 'dependencies': [ |
844 '../build/linux/system.gyp:gtk' | 844 '../build/linux/system.gyp:gtk' |
845 ], | 845 ], |
846 }], | 846 }], |
| 847 ['OS=="linux" and chromeos==1', { |
| 848 'include_dirs': [ |
| 849 '<(grit_out_dir)', |
| 850 ], |
| 851 }], |
847 ], | 852 ], |
848 }, | 853 }, |
849 { | 854 { |
850 'target_name': 'sync', | 855 'target_name': 'sync', |
851 'type': '<(library)', | 856 'type': '<(library)', |
852 'sources': [ | 857 'sources': [ |
853 '<(protoc_out_dir)/chrome/browser/sync/protocol/sync.pb.cc', | 858 '<(protoc_out_dir)/chrome/browser/sync/protocol/sync.pb.cc', |
854 '<(protoc_out_dir)/chrome/browser/sync/protocol/sync.pb.h', | 859 '<(protoc_out_dir)/chrome/browser/sync/protocol/sync.pb.h', |
855 '<(protoc_out_dir)/chrome/browser/sync/protocol/autofill_specifics.pb.cc
', | 860 '<(protoc_out_dir)/chrome/browser/sync/protocol/autofill_specifics.pb.cc
', |
856 '<(protoc_out_dir)/chrome/browser/sync/protocol/autofill_specifics.pb.h'
, | 861 '<(protoc_out_dir)/chrome/browser/sync/protocol/autofill_specifics.pb.h'
, |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
998 'dependencies': [ | 1003 'dependencies': [ |
999 '../build/linux/system.gyp:gtk', | 1004 '../build/linux/system.gyp:gtk', |
1000 '../build/linux/system.gyp:nss' | 1005 '../build/linux/system.gyp:nss' |
1001 ], | 1006 ], |
1002 'link_settings': { | 1007 'link_settings': { |
1003 'libraries': [ | 1008 'libraries': [ |
1004 '-lXss', | 1009 '-lXss', |
1005 ], | 1010 ], |
1006 }, | 1011 }, |
1007 }], | 1012 }], |
| 1013 ['OS=="linux" and chromeos==1', { |
| 1014 'include_dirs': [ |
| 1015 '<(grit_out_dir)', |
| 1016 ], |
| 1017 }], |
1008 ['OS=="mac"', { | 1018 ['OS=="mac"', { |
1009 'link_settings': { | 1019 'link_settings': { |
1010 'libraries': [ | 1020 'libraries': [ |
1011 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', | 1021 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', |
1012 ], | 1022 ], |
1013 }, | 1023 }, |
1014 }], | 1024 }], |
1015 ], | 1025 ], |
1016 }, | 1026 }, |
1017 ], | 1027 ], |
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1641 }], # targets | 1651 }], # targets |
1642 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1652 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1643 ], # 'conditions' | 1653 ], # 'conditions' |
1644 } | 1654 } |
1645 | 1655 |
1646 # Local Variables: | 1656 # Local Variables: |
1647 # tab-width:2 | 1657 # tab-width:2 |
1648 # indent-tabs-mode:nil | 1658 # indent-tabs-mode:nil |
1649 # End: | 1659 # End: |
1650 # vim: set expandtab tabstop=2 shiftwidth=2: | 1660 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |