| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 import("//components/spellcheck/spellcheck_build_features.gni") | 7 import("//components/spellcheck/spellcheck_build_features.gni") |
| 8 | 8 |
| 9 source_set("native") { | 9 source_set("native") { |
| 10 deps = [ | 10 deps = [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "//ui/gfx", | 29 "//ui/gfx", |
| 30 "//ui/gfx/geometry:geometry", | 30 "//ui/gfx/geometry:geometry", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 include_dirs = [ | 33 include_dirs = [ |
| 34 "//skia/config", | 34 "//skia/config", |
| 35 "//third_party/protobuf", | 35 "//third_party/protobuf", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 sources = [ | 38 sources = [ |
| 39 "address_parser.cc", |
| 40 "address_parser.h", |
| 41 "address_parser_internal.cc", |
| 42 "address_parser_internal.h", |
| 39 "android_protocol_handler.cc", | 43 "android_protocol_handler.cc", |
| 40 "android_protocol_handler.h", | 44 "android_protocol_handler.h", |
| 41 "android_webview_jni_registrar.cc", | 45 "android_webview_jni_registrar.cc", |
| 42 "android_webview_jni_registrar.h", | 46 "android_webview_jni_registrar.h", |
| 43 "aw_autofill_client.cc", | 47 "aw_autofill_client.cc", |
| 44 "aw_autofill_client.h", | 48 "aw_autofill_client.h", |
| 45 "aw_contents.cc", | 49 "aw_contents.cc", |
| 46 "aw_contents.h", | 50 "aw_contents.h", |
| 47 "aw_contents_background_thread_client.cc", | 51 "aw_contents_background_thread_client.cc", |
| 48 "aw_contents_background_thread_client.h", | 52 "aw_contents_background_thread_client.h", |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 sources = [ | 177 sources = [ |
| 174 "permission/aw_permission_request.h", | 178 "permission/aw_permission_request.h", |
| 175 ] | 179 ] |
| 176 } | 180 } |
| 177 | 181 |
| 178 java_cpp_enum("aw_renderer_priority_manager_renderer_priority") { | 182 java_cpp_enum("aw_renderer_priority_manager_renderer_priority") { |
| 179 sources = [ | 183 sources = [ |
| 180 "aw_renderer_priority_manager.h", | 184 "aw_renderer_priority_manager.h", |
| 181 ] | 185 ] |
| 182 } | 186 } |
| OLD | NEW |