| 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 #include "components/sync/test/local_sync_test_server.h" | 5 #include "components/sync/test/local_sync_test_server.h" |
| 6 | 6 |
| 7 #include <stdint.h> | |
| 8 | |
| 9 #include <string> | 7 #include <string> |
| 10 | 8 |
| 11 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 12 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| 13 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
| 14 #include "base/values.h" | 12 #include "base/values.h" |
| 15 #include "net/test/python_utils.h" | 13 #include "net/test/python_utils.h" |
| 16 #include "net/test/spawned_test_server/spawned_test_server.h" | 14 #include "net/test/spawned_test_server/spawned_test_server.h" |
| 17 | 15 |
| 18 namespace syncer { | 16 namespace syncer { |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 << "Testserver features that rely on it will not work"; | 91 << "Testserver features that rely on it will not work"; |
| 94 return true; | 92 return true; |
| 95 } | 93 } |
| 96 AppendToPythonPath(pyproto_dir.AppendASCII("components") | 94 AppendToPythonPath(pyproto_dir.AppendASCII("components") |
| 97 .AppendASCII("sync") | 95 .AppendASCII("sync") |
| 98 .AppendASCII("protocol")); | 96 .AppendASCII("protocol")); |
| 99 return true; | 97 return true; |
| 100 } | 98 } |
| 101 | 99 |
| 102 } // namespace syncer | 100 } // namespace syncer |
| OLD | NEW |