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

Side by Side Diff: components/memory_pressure/BUILD.gn

Issue 2874553004: Remove memory_pressure component. (Closed)
Patch Set: Created 3 years, 7 months 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
« no previous file with comments | « components/BUILD.gn ('k') | components/memory_pressure/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 static_library("memory_pressure") {
6 sources = [
7 "direct_memory_pressure_calculator.h",
8 "direct_memory_pressure_calculator_linux.cc",
9 "direct_memory_pressure_calculator_linux.h",
10 "direct_memory_pressure_calculator_win.cc",
11 "direct_memory_pressure_calculator_win.h",
12 "filtered_memory_pressure_calculator.cc",
13 "filtered_memory_pressure_calculator.h",
14 "memory_pressure_calculator.h",
15 "memory_pressure_listener.cc",
16 "memory_pressure_listener.h",
17 "memory_pressure_monitor.cc",
18 "memory_pressure_monitor.h",
19 "memory_pressure_stats_collector.cc",
20 "memory_pressure_stats_collector.h",
21 ]
22
23 deps = [
24 "//base",
25 ]
26 }
27
28 source_set("unit_tests") {
29 testonly = true
30 sources = [
31 "direct_memory_pressure_calculator_linux_unittest.cc",
32 "direct_memory_pressure_calculator_win_unittest.cc",
33 "filtered_memory_pressure_calculator_unittest.cc",
34 "memory_pressure_monitor_unittest.cc",
35 "memory_pressure_stats_collector_unittest.cc",
36 "test_memory_pressure_calculator.cc",
37 "test_memory_pressure_calculator.h",
38 ]
39
40 deps = [
41 ":memory_pressure",
42 "//base/test:test_support",
43 "//testing/gmock",
44 "//testing/gtest",
45 ]
46 }
OLDNEW
« no previous file with comments | « components/BUILD.gn ('k') | components/memory_pressure/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698