| 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 | 7 |
| 8 if (is_component_build) { | 8 if (is_component_build) { |
| 9 link_target_type = "source_set" | 9 link_target_type = "source_set" |
| 10 } else { | 10 } else { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "fileapi/webfilewriter_base.cc", | 94 "fileapi/webfilewriter_base.cc", |
| 95 "fileapi/webfilewriter_base.h", | 95 "fileapi/webfilewriter_base.h", |
| 96 "fileapi/webfilewriter_impl.cc", | 96 "fileapi/webfilewriter_impl.cc", |
| 97 "fileapi/webfilewriter_impl.h", | 97 "fileapi/webfilewriter_impl.h", |
| 98 "font_warmup_win.cc", | 98 "font_warmup_win.cc", |
| 99 "font_warmup_win.h", | 99 "font_warmup_win.h", |
| 100 "ftp_directory_listing_response_delegate.cc", | 100 "ftp_directory_listing_response_delegate.cc", |
| 101 "ftp_directory_listing_response_delegate.h", | 101 "ftp_directory_listing_response_delegate.h", |
| 102 "image_decoder.cc", | 102 "image_decoder.cc", |
| 103 "image_decoder.h", | 103 "image_decoder.h", |
| 104 "indexed_db/indexed_db_callbacks_impl.cc", |
| 105 "indexed_db/indexed_db_callbacks_impl.h", |
| 106 "indexed_db/indexed_db_database_callbacks_impl.cc", |
| 107 "indexed_db/indexed_db_database_callbacks_impl.h", |
| 104 "indexed_db/indexed_db_dispatcher.cc", | 108 "indexed_db/indexed_db_dispatcher.cc", |
| 105 "indexed_db/indexed_db_dispatcher.h", | 109 "indexed_db/indexed_db_dispatcher.h", |
| 106 "indexed_db/indexed_db_key_builders.cc", | 110 "indexed_db/indexed_db_key_builders.cc", |
| 107 "indexed_db/indexed_db_key_builders.h", | 111 "indexed_db/indexed_db_key_builders.h", |
| 108 "indexed_db/indexed_db_message_filter.cc", | 112 "indexed_db/indexed_db_message_filter.cc", |
| 109 "indexed_db/indexed_db_message_filter.h", | 113 "indexed_db/indexed_db_message_filter.h", |
| 110 "indexed_db/webidbcursor_impl.cc", | 114 "indexed_db/webidbcursor_impl.cc", |
| 111 "indexed_db/webidbcursor_impl.h", | 115 "indexed_db/webidbcursor_impl.h", |
| 112 "indexed_db/webidbdatabase_impl.cc", | 116 "indexed_db/webidbdatabase_impl.cc", |
| 113 "indexed_db/webidbdatabase_impl.h", | 117 "indexed_db/webidbdatabase_impl.h", |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 | 296 |
| 293 # See comment at the top of //content/BUILD.gn for how this works. | 297 # See comment at the top of //content/BUILD.gn for how this works. |
| 294 group("for_content_tests") { | 298 group("for_content_tests") { |
| 295 visibility = [ "//content/test/*" ] | 299 visibility = [ "//content/test/*" ] |
| 296 if (!is_component_build) { | 300 if (!is_component_build) { |
| 297 public_deps = [ | 301 public_deps = [ |
| 298 ":child", | 302 ":child", |
| 299 ] | 303 ] |
| 300 } | 304 } |
| 301 } | 305 } |
| OLD | NEW |