| 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 import("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 ":in_memory_url_index_cache_proto", | 138 ":in_memory_url_index_cache_proto", |
| 139 ] | 139 ] |
| 140 } | 140 } |
| 141 | 141 |
| 142 if (is_android) { | 142 if (is_android) { |
| 143 # GYP: //component/omnibox.gypi:autocomplete_match_type_java | 143 # GYP: //component/omnibox.gypi:autocomplete_match_type_java |
| 144 java_cpp_enum("autocomplete_match_type_javagen") { | 144 java_cpp_enum("autocomplete_match_type_javagen") { |
| 145 sources = [ | 145 sources = [ |
| 146 "autocomplete_match_type.h", | 146 "autocomplete_match_type.h", |
| 147 ] | 147 ] |
| 148 outputs = [ | |
| 149 "org/chromium/chrome/browser/omnibox/OmniboxSuggestionType.java", | |
| 150 ] | |
| 151 } | 148 } |
| 152 } | 149 } |
| 153 | 150 |
| 154 proto_library("in_memory_url_index_cache_proto") { | 151 proto_library("in_memory_url_index_cache_proto") { |
| 155 sources = [ | 152 sources = [ |
| 156 "in_memory_url_index_cache.proto", | 153 "in_memory_url_index_cache.proto", |
| 157 ] | 154 ] |
| 158 } | 155 } |
| 159 | 156 |
| 160 static_library("test_support") { | 157 static_library("test_support") { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "//components/search", | 197 "//components/search", |
| 201 "//components/search_engines", | 198 "//components/search_engines", |
| 202 "//components/variations", | 199 "//components/variations", |
| 203 "//testing/gmock", | 200 "//testing/gmock", |
| 204 "//testing/gtest", | 201 "//testing/gtest", |
| 205 "//url", | 202 "//url", |
| 206 ":browser", | 203 ":browser", |
| 207 ":test_support", | 204 ":test_support", |
| 208 ] | 205 ] |
| 209 } | 206 } |
| OLD | NEW |