Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: content/child/BUILD.gn

Issue 2511403003: Send IndexedDB observations through IDBDatabaseCallbacks. (Closed)
Patch Set: Remove unnecessary forward declaration. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//ppapi/features/features.gni") 7 import("//ppapi/features/features.gni")
8 import("//third_party/WebKit/public/public_features.gni") 8 import("//third_party/WebKit/public/public_features.gni")
9 9
10 if (is_component_build) { 10 if (is_component_build) {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "image_decoder.cc", 100 "image_decoder.cc",
101 "image_decoder.h", 101 "image_decoder.h",
102 "indexed_db/indexed_db_callbacks_impl.cc", 102 "indexed_db/indexed_db_callbacks_impl.cc",
103 "indexed_db/indexed_db_callbacks_impl.h", 103 "indexed_db/indexed_db_callbacks_impl.h",
104 "indexed_db/indexed_db_database_callbacks_impl.cc", 104 "indexed_db/indexed_db_database_callbacks_impl.cc",
105 "indexed_db/indexed_db_database_callbacks_impl.h", 105 "indexed_db/indexed_db_database_callbacks_impl.h",
106 "indexed_db/indexed_db_dispatcher.cc", 106 "indexed_db/indexed_db_dispatcher.cc",
107 "indexed_db/indexed_db_dispatcher.h", 107 "indexed_db/indexed_db_dispatcher.h",
108 "indexed_db/indexed_db_key_builders.cc", 108 "indexed_db/indexed_db_key_builders.cc",
109 "indexed_db/indexed_db_key_builders.h", 109 "indexed_db/indexed_db_key_builders.h",
110 "indexed_db/indexed_db_message_filter.cc",
111 "indexed_db/indexed_db_message_filter.h",
112 "indexed_db/webidbcursor_impl.cc", 110 "indexed_db/webidbcursor_impl.cc",
113 "indexed_db/webidbcursor_impl.h", 111 "indexed_db/webidbcursor_impl.h",
114 "indexed_db/webidbdatabase_impl.cc", 112 "indexed_db/webidbdatabase_impl.cc",
115 "indexed_db/webidbdatabase_impl.h", 113 "indexed_db/webidbdatabase_impl.h",
116 "indexed_db/webidbfactory_impl.cc", 114 "indexed_db/webidbfactory_impl.cc",
117 "indexed_db/webidbfactory_impl.h", 115 "indexed_db/webidbfactory_impl.h",
118 "memory/child_memory_coordinator_impl.cc", 116 "memory/child_memory_coordinator_impl.cc",
119 "memory/child_memory_coordinator_impl.h", 117 "memory/child_memory_coordinator_impl.h",
120 "memory/child_memory_coordinator_impl_android.cc", 118 "memory/child_memory_coordinator_impl_android.cc",
121 "memory/child_memory_coordinator_impl_android.h", 119 "memory/child_memory_coordinator_impl_android.h",
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 291
294 # See comment at the top of //content/BUILD.gn for how this works. 292 # See comment at the top of //content/BUILD.gn for how this works.
295 group("for_content_tests") { 293 group("for_content_tests") {
296 visibility = [ "//content/test/*" ] 294 visibility = [ "//content/test/*" ]
297 if (!is_component_build) { 295 if (!is_component_build) {
298 public_deps = [ 296 public_deps = [
299 ":child", 297 ":child",
300 ] 298 ]
301 } 299 }
302 } 300 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698