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 static_library("browser") { | 7 static_library("browser") { |
8 sources = [ | 8 sources = [ |
9 "download_constants.h", | 9 "download_constants.h", |
10 "download_database.cc", | 10 "download_database.cc", |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 "android/favicon_sql_handler.cc", | 102 "android/favicon_sql_handler.cc", |
103 "android/favicon_sql_handler.h", | 103 "android/favicon_sql_handler.h", |
104 "android/sql_handler.cc", | 104 "android/sql_handler.cc", |
105 "android/sql_handler.h", | 105 "android/sql_handler.h", |
106 "android/urls_sql_handler.cc", | 106 "android/urls_sql_handler.cc", |
107 "android/urls_sql_handler.h", | 107 "android/urls_sql_handler.h", |
108 "android/visit_sql_handler.cc", | 108 "android/visit_sql_handler.cc", |
109 "android/visit_sql_handler.h", | 109 "android/visit_sql_handler.h", |
110 ] | 110 ] |
111 } | 111 } |
| 112 |
| 113 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
112 } | 114 } |
113 | 115 |
114 proto_library("proto") { | 116 proto_library("proto") { |
115 sources = [ | 117 sources = [ |
116 "in_memory_url_index_cache.proto", | 118 "in_memory_url_index_cache.proto", |
117 ] | 119 ] |
118 } | 120 } |
OLD | NEW |