| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 'target_name': 'query_parser', | |
| 9 'type': 'static_library', | |
| 10 'include_dirs': [ | |
| 11 '..', | |
| 12 ], | |
| 13 'dependencies': [ | |
| 14 '../base/base.gyp:base', | |
| 15 '../base/base.gyp:base_i18n', | |
| 16 '../third_party/icu/icu.gyp:icuuc', | |
| 17 ], | |
| 18 'sources': [ | |
| 19 'query_parser/query_parser.cc', | |
| 20 'query_parser/query_parser.h', | |
| 21 'query_parser/snippet.cc', | |
| 22 'query_parser/snippet.h', | |
| 23 ], | |
| 24 }, | |
| 25 ], | |
| 26 } | |
| OLD | NEW |