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

Side by Side Diff: components/BUILD.gn

Issue 2459733002: Move discardable memory to //components from //content (Closed)
Patch Set: Fix build error in ios Created 4 years, 1 month 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("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 "//components/cast_certificate:unit_tests", 163 "//components/cast_certificate:unit_tests",
164 "//components/certificate_reporting:unit_tests", 164 "//components/certificate_reporting:unit_tests",
165 "//components/certificate_transparency:unit_tests", 165 "//components/certificate_transparency:unit_tests",
166 "//components/contextual_search:unit_tests", 166 "//components/contextual_search:unit_tests",
167 "//components/crash/content/app:unit_tests", 167 "//components/crash/content/app:unit_tests",
168 "//components/crash/core/common:unit_tests", 168 "//components/crash/core/common:unit_tests",
169 "//components/data_reduction_proxy/content/browser:unit_tests", 169 "//components/data_reduction_proxy/content/browser:unit_tests",
170 "//components/data_reduction_proxy/core/browser:unit_tests", 170 "//components/data_reduction_proxy/core/browser:unit_tests",
171 "//components/data_reduction_proxy/core/common:unit_tests", 171 "//components/data_reduction_proxy/core/common:unit_tests",
172 "//components/data_use_measurement/content:unit_tests", 172 "//components/data_use_measurement/content:unit_tests",
173 "//components/discardable_memory/common:unit_tests",
173 "//components/display_compositor:unit_tests", 174 "//components/display_compositor:unit_tests",
174 "//components/dom_distiller/content/browser:unit_tests", 175 "//components/dom_distiller/content/browser:unit_tests",
175 "//components/domain_reliability:unit_tests", 176 "//components/domain_reliability:unit_tests",
176 "//components/error_page/renderer:unit_tests", 177 "//components/error_page/renderer:unit_tests",
177 "//components/favicon/content:unit_tests", 178 "//components/favicon/content:unit_tests",
178 "//components/gcm_driver/instance_id:unit_tests", 179 "//components/gcm_driver/instance_id:unit_tests",
179 "//components/guest_view/browser:unit_tests", 180 "//components/guest_view/browser:unit_tests",
180 "//components/history/content/browser:unit_tests", 181 "//components/history/content/browser:unit_tests",
181 "//components/invalidation/impl:unit_tests", 182 "//components/invalidation/impl:unit_tests",
182 "//components/keyed_service/content:unit_tests", 183 "//components/keyed_service/content:unit_tests",
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 470 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
470 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 471 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
471 472
472 deps = [ 473 deps = [
473 "//base", 474 "//base",
474 "//components/test:test_support", 475 "//components/test:test_support",
475 "//components/visitedlink/browser", 476 "//components/visitedlink/browser",
476 "//testing/perf", 477 "//testing/perf",
477 "//url", 478 "//url",
478 ] 479 ]
480
481 if (!is_ios) {
482 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per ftest.cc" ]
483 deps += [ "//components/discardable_memory/common" ]
484 }
479 } 485 }
480 } 486 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698