| 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 1002 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1013 'include_dirs': [ | 1013 'include_dirs': [ |
| 1014 '..', | 1014 '..', |
| 1015 '<(protoc_out_dir)', | 1015 '<(protoc_out_dir)', |
| 1016 ], | 1016 ], |
| 1017 'defines' : [ | 1017 'defines' : [ |
| 1018 'SYNC_ENGINE_VERSION_STRING="Unknown"', | 1018 'SYNC_ENGINE_VERSION_STRING="Unknown"', |
| 1019 '_CRT_SECURE_NO_WARNINGS', | 1019 '_CRT_SECURE_NO_WARNINGS', |
| 1020 '_USE_32BIT_TIME_T', | 1020 '_USE_32BIT_TIME_T', |
| 1021 ], | 1021 ], |
| 1022 'dependencies': [ | 1022 'dependencies': [ |
| 1023 'common', |
| 1023 '../skia/skia.gyp:skia', | 1024 '../skia/skia.gyp:skia', |
| 1024 '../third_party/libjingle/libjingle.gyp:libjingle', | 1025 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 1025 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', | 1026 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', |
| 1026 # TODO(akalin): Change back to protobuf_lite once it supports | 1027 # TODO(akalin): Change back to protobuf_lite once it supports |
| 1027 # preserving unknown fields. | 1028 # preserving unknown fields. |
| 1028 '../third_party/protobuf/protobuf.gyp:protobuf#target', | 1029 '../third_party/protobuf/protobuf.gyp:protobuf#target', |
| 1029 ], | 1030 ], |
| 1030 'conditions': [ | 1031 'conditions': [ |
| 1031 ['OS=="win"', { | 1032 ['OS=="win"', { |
| 1032 'sources' : [ | 1033 'sources' : [ |
| (...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2002 }], # targets | 2003 }], # targets |
| 2003 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 2004 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 2004 ], # 'conditions' | 2005 ], # 'conditions' |
| 2005 } | 2006 } |
| 2006 | 2007 |
| 2007 # Local Variables: | 2008 # Local Variables: |
| 2008 # tab-width:2 | 2009 # tab-width:2 |
| 2009 # indent-tabs-mode:nil | 2010 # indent-tabs-mode:nil |
| 2010 # End: | 2011 # End: |
| 2011 # vim: set expandtab tabstop=2 shiftwidth=2: | 2012 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |