| 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 '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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 '..', | 615 '..', |
| 616 ], | 616 ], |
| 617 'defines' : [ | 617 'defines' : [ |
| 618 'SYNC_ENGINE_VERSION_STRING="Unknown"', | 618 'SYNC_ENGINE_VERSION_STRING="Unknown"', |
| 619 '_CRT_SECURE_NO_WARNINGS', | 619 '_CRT_SECURE_NO_WARNINGS', |
| 620 '_USE_32BIT_TIME_T', | 620 '_USE_32BIT_TIME_T', |
| 621 ], | 621 ], |
| 622 'dependencies': [ | 622 'dependencies': [ |
| 623 'common', | 623 'common', |
| 624 '../base/base.gyp:base', | 624 '../base/base.gyp:base', |
| 625 '../crypto/crypto.gyp:crypto', |
| 625 '../skia/skia.gyp:skia', | 626 '../skia/skia.gyp:skia', |
| 626 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', | 627 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', |
| 627 ], | 628 ], |
| 628 'export_dependent_settings': [ | 629 'export_dependent_settings': [ |
| 629 '../base/base.gyp:base', | 630 '../base/base.gyp:base', |
| 631 '../crypto/crypto.gyp:crypto', |
| 630 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', | 632 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', |
| 631 ], | 633 ], |
| 632 # This target exports a hard dependency because its header files include | 634 # This target exports a hard dependency because its header files include |
| 633 # protobuf header files from sync_proto_cpp. | 635 # protobuf header files from sync_proto_cpp. |
| 634 'hard_dependency': 1, | 636 'hard_dependency': 1, |
| 635 'conditions': [ | 637 'conditions': [ |
| 636 ['OS=="win"', { | 638 ['OS=="win"', { |
| 637 'sources' : [ | 639 'sources' : [ |
| 638 'browser/sync/util/data_encryption.cc', | 640 'browser/sync/util/data_encryption.cc', |
| 639 'browser/sync/util/data_encryption.h', | 641 'browser/sync/util/data_encryption.h', |
| (...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1559 }], # targets | 1561 }], # targets |
| 1560 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1562 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 1561 ], # 'conditions' | 1563 ], # 'conditions' |
| 1562 } | 1564 } |
| 1563 | 1565 |
| 1564 # Local Variables: | 1566 # Local Variables: |
| 1565 # tab-width:2 | 1567 # tab-width:2 |
| 1566 # indent-tabs-mode:nil | 1568 # indent-tabs-mode:nil |
| 1567 # End: | 1569 # End: |
| 1568 # vim: set expandtab tabstop=2 shiftwidth=2: | 1570 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |