Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: components/omnibox.gypi

Issue 669573005: Add a class to parse answer json. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix case on "copyright" Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/components_tests.gyp ('k') | components/omnibox/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # GN version: //components/omnibox 8 # GN version: //components/omnibox
9 'target_name': 'omnibox', 9 'target_name': 'omnibox',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 'omnibox/keyword_provider.cc', 48 'omnibox/keyword_provider.cc',
49 'omnibox/keyword_provider.h', 49 'omnibox/keyword_provider.h',
50 'omnibox/omnibox_field_trial.cc', 50 'omnibox/omnibox_field_trial.cc',
51 'omnibox/omnibox_field_trial.h', 51 'omnibox/omnibox_field_trial.h',
52 'omnibox/omnibox_switches.cc', 52 'omnibox/omnibox_switches.cc',
53 'omnibox/omnibox_switches.h', 53 'omnibox/omnibox_switches.h',
54 'omnibox/search_provider.cc', 54 'omnibox/search_provider.cc',
55 'omnibox/search_provider.h', 55 'omnibox/search_provider.h',
56 'omnibox/search_suggestion_parser.cc', 56 'omnibox/search_suggestion_parser.cc',
57 'omnibox/search_suggestion_parser.h', 57 'omnibox/search_suggestion_parser.h',
58 'omnibox/suggestion_answer.cc',
59 'omnibox/suggestion_answer.h',
58 'omnibox/url_prefix.cc', 60 'omnibox/url_prefix.cc',
59 'omnibox/url_prefix.h', 61 'omnibox/url_prefix.h',
60 ], 62 ],
61 }, 63 },
62 { 64 {
63 # GN version: //components/omnibox:test_support 65 # GN version: //components/omnibox:test_support
64 'target_name': 'omnibox_test_support', 66 'target_name': 'omnibox_test_support',
65 'type': 'static_library', 67 'type': 'static_library',
66 'dependencies': [ 68 'dependencies': [
67 '../base/base.gyp:base', 69 '../base/base.gyp:base',
68 'omnibox', 70 'omnibox',
69 'component_metrics_proto', 71 'component_metrics_proto',
70 ], 72 ],
71 'include_dirs': [ 73 'include_dirs': [
72 '..', 74 '..',
73 ], 75 ],
74 'sources': [ 76 'sources': [
75 # Note: sources list duplicated in GN build. 77 # Note: sources list duplicated in GN build.
76 'omnibox/test_scheme_classifier.cc', 78 'omnibox/test_scheme_classifier.cc',
77 'omnibox/test_scheme_classifier.h', 79 'omnibox/test_scheme_classifier.h',
78 ], 80 ],
79 }, 81 },
80 ], 82 ],
81 } 83 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/omnibox/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698