OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 6 'targets': [ |
7 # Test support files for the 'sync_core' target. | 7 # Test support files for the 'sync_core' target. |
8 { | 8 { |
9 'target_name': 'test_support_sync_core', | 9 'target_name': 'test_support_sync_core', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
96 { | 96 { |
97 'target_name': 'test_support_sync_fake_server', | 97 'target_name': 'test_support_sync_fake_server', |
98 'type': 'static_library', | 98 'type': 'static_library', |
99 'variables': { 'enable_wexit_time_destructors': 1, }, | 99 'variables': { 'enable_wexit_time_destructors': 1, }, |
100 'include_dirs': [ | 100 'include_dirs': [ |
101 '..', | 101 '..', |
102 ], | 102 ], |
103 'dependencies': [ | 103 'dependencies': [ |
104 '../base/base.gyp:base', | 104 '../base/base.gyp:base', |
105 '../net/net.gyp:net', | 105 '../net/net.gyp:net', |
106 » '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 106 » '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
rlarocque
2014/04/22 18:22:22
Is that a tab character?
pval...(no longer on Chromium)
2014/04/24 01:08:53
this was resolved in another CL that I committed
| |
107 'sync', | 107 'sync', |
108 ], | 108 ], |
109 'export_dependent_settings': [ | 109 'export_dependent_settings': [ |
110 'sync', | 110 'sync', |
111 ], | 111 ], |
112 'sources': [ | 112 'sources': [ |
113 'test/fake_server/bookmark_entity.cc', | 113 'test/fake_server/bookmark_entity.cc', |
114 'test/fake_server/bookmark_entity.h', | 114 'test/fake_server/bookmark_entity.h', |
115 'test/fake_server/fake_server.cc', | 115 'test/fake_server/fake_server.cc', |
116 'test/fake_server/fake_server.h', | 116 'test/fake_server/fake_server.h', |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
694 'variables': { | 694 'variables': { |
695 'test_suite_name': 'sync_unit_tests', | 695 'test_suite_name': 'sync_unit_tests', |
696 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', | 696 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', |
697 }, | 697 }, |
698 'includes': [ '../build/apk_test.gypi' ], | 698 'includes': [ '../build/apk_test.gypi' ], |
699 }, | 699 }, |
700 ], | 700 ], |
701 }], | 701 }], |
702 ], | 702 ], |
703 } | 703 } |
OLD | NEW |