| 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "android/content_protocol_handler_impl.h", | 196 "android/content_protocol_handler_impl.h", |
| 197 "android/content_startup_flags.cc", | 197 "android/content_startup_flags.cc", |
| 198 "android/content_startup_flags.h", | 198 "android/content_startup_flags.h", |
| 199 "android/content_video_view.cc", | 199 "android/content_video_view.cc", |
| 200 "android/content_video_view.h", | 200 "android/content_video_view.h", |
| 201 "android/devtools_auth.cc", | 201 "android/devtools_auth.cc", |
| 202 "android/interface_provider_android_impl.cc", | 202 "android/interface_provider_android_impl.cc", |
| 203 "android/interface_provider_android_impl.h", | 203 "android/interface_provider_android_impl.h", |
| 204 "android/interface_registry_android_impl.cc", | 204 "android/interface_registry_android_impl.cc", |
| 205 "android/interface_registry_android_impl.h", | 205 "android/interface_registry_android_impl.h", |
| 206 "android/java_interfaces_impl.cc", |
| 207 "android/java_interfaces_impl.h", |
| 206 "android/url_request_content_job.cc", | 208 "android/url_request_content_job.cc", |
| 207 "android/url_request_content_job.h", | 209 "android/url_request_content_job.h", |
| 208 "appcache/appcache.cc", | 210 "appcache/appcache.cc", |
| 209 "appcache/appcache.h", | 211 "appcache/appcache.h", |
| 210 "appcache/appcache_backend_impl.cc", | 212 "appcache/appcache_backend_impl.cc", |
| 211 "appcache/appcache_backend_impl.h", | 213 "appcache/appcache_backend_impl.h", |
| 212 "appcache/appcache_database.cc", | 214 "appcache/appcache_database.cc", |
| 213 "appcache/appcache_database.h", | 215 "appcache/appcache_database.h", |
| 214 "appcache/appcache_disk_cache.cc", | 216 "appcache/appcache_disk_cache.cc", |
| 215 "appcache/appcache_disk_cache.h", | 217 "appcache/appcache_disk_cache.h", |
| (...skipping 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1932 if (!is_component_build) { | 1934 if (!is_component_build) { |
| 1933 public_deps = [ | 1935 public_deps = [ |
| 1934 ":browser", | 1936 ":browser", |
| 1935 ] | 1937 ] |
| 1936 } else { | 1938 } else { |
| 1937 public_deps = [ | 1939 public_deps = [ |
| 1938 "//third_party/leveldatabase", | 1940 "//third_party/leveldatabase", |
| 1939 ] | 1941 ] |
| 1940 } | 1942 } |
| 1941 } | 1943 } |
| OLD | NEW |