| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 { | 7 { |
| 8 'target_name': 'autocomplete', | 8 'target_name': 'autocomplete', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
| 12 '../net/net.gyp:net', | 12 '../net/net.gyp:net', |
| 13 '../url/url.gyp:url_lib', | 13 '../url/url.gyp:url_lib', |
| 14 'component_metrics_proto', | 14 'component_metrics_proto', |
| 15 'url_fixer', | 15 'url_fixer', |
| 16 ], | 16 ], |
| 17 'include_dirs': [ | 17 'include_dirs': [ |
| 18 '..', | 18 '..', |
| 19 ], | 19 ], |
| 20 'sources': [ | 20 'sources': [ |
| 21 'autocomplete/autocomplete_input.cc', | 21 'autocomplete/autocomplete_input.cc', |
| 22 'autocomplete/autocomplete_input.h', | 22 'autocomplete/autocomplete_input.h', |
| 23 'autocomplete/autocomplete_match_type.cc', |
| 24 'autocomplete/autocomplete_match_type.h', |
| 23 'autocomplete/autocomplete_scheme_classifier.h', | 25 'autocomplete/autocomplete_scheme_classifier.h', |
| 24 'autocomplete/url_prefix.cc', | 26 'autocomplete/url_prefix.cc', |
| 25 'autocomplete/url_prefix.h', | 27 'autocomplete/url_prefix.h', |
| 26 ], | 28 ], |
| 27 }, | 29 }, |
| 28 { | 30 { |
| 29 'target_name': 'autocomplete_test_support', | 31 'target_name': 'autocomplete_test_support', |
| 30 'type': 'static_library', | 32 'type': 'static_library', |
| 31 'dependencies': [ | 33 'dependencies': [ |
| 32 '../base/base.gyp:base', | 34 '../base/base.gyp:base', |
| 33 'autocomplete', | 35 'autocomplete', |
| 34 'component_metrics_proto', | 36 'component_metrics_proto', |
| 35 ], | 37 ], |
| 36 'include_dirs': [ | 38 'include_dirs': [ |
| 37 '..', | 39 '..', |
| 38 ], | 40 ], |
| 39 'sources': [ | 41 'sources': [ |
| 40 'autocomplete/test_scheme_classifier.cc', | 42 'autocomplete/test_scheme_classifier.cc', |
| 41 'autocomplete/test_scheme_classifier.h', | 43 'autocomplete/test_scheme_classifier.h', |
| 42 ], | 44 ], |
| 43 }, | 45 }, |
| 44 ], | 46 ], |
| 45 } | 47 } |
| OLD | NEW |