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

Side by Side Diff: components/omnibox/BUILD.gn

Issue 443043003: Rename components/autocomplete to components/omnibox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 months 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 | Annotate | Revision Log
« no previous file with comments | « components/omnibox.gypi ('k') | components/omnibox/DEPS » ('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 static_library("autocomplete") { 5 static_library("omnibox") {
6 sources = [ 6 sources = [
7 "autocomplete_input.cc", 7 "autocomplete_input.cc",
8 "autocomplete_input.h", 8 "autocomplete_input.h",
9 "autocomplete_match.cc", 9 "autocomplete_match.cc",
10 "autocomplete_match.h", 10 "autocomplete_match.h",
11 "autocomplete_match_type.cc", 11 "autocomplete_match_type.cc",
12 "autocomplete_match_type.h", 12 "autocomplete_match_type.h",
13 "autocomplete_provider.cc", 13 "autocomplete_provider.cc",
14 "autocomplete_provider.h", 14 "autocomplete_provider.h",
15 "autocomplete_scheme_classifier.h", 15 "autocomplete_scheme_classifier.h",
(...skipping 16 matching lines...) Expand all
32 ] 32 ]
33 } 33 }
34 34
35 static_library("test_support") { 35 static_library("test_support") {
36 sources = [ 36 sources = [
37 "test_scheme_classifier.cc", 37 "test_scheme_classifier.cc",
38 "test_scheme_classifier.h", 38 "test_scheme_classifier.h",
39 ] 39 ]
40 40
41 deps = [ 41 deps = [
42 ":autocomplete", 42 ":omnibox",
43 "//base", 43 "//base",
44 "//components/metrics/proto", 44 "//components/metrics/proto",
45 ] 45 ]
46 } 46 }
47 47
48 source_set("unit_tests") { 48 source_set("unit_tests") {
49 sources = [ 49 sources = [
50 "autocomplete_input_unittest.cc", 50 "autocomplete_input_unittest.cc",
51 "autocomplete_match_unittest.cc", 51 "autocomplete_match_unittest.cc",
52 ] 52 ]
53 53
54 deps = [ 54 deps = [
55 ":autocomplete", 55 ":omnibox",
56 ":test_support", 56 ":test_support",
57 "//testing/gtest", 57 "//testing/gtest",
58 ] 58 ]
59 } 59 }
OLDNEW
« no previous file with comments | « components/omnibox.gypi ('k') | components/omnibox/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698