OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 # GYP version: components/memory_pressure.gypi:memory_pressure | 5 # GYP version: components/memory_pressure.gypi:memory_pressure |
6 source_set("memory_pressure") { | 6 source_set("memory_pressure") { |
7 sources = [ | 7 sources = [ |
8 "direct_memory_pressure_calculator.cc", | |
9 "direct_memory_pressure_calculator.h", | 8 "direct_memory_pressure_calculator.h", |
10 "direct_memory_pressure_calculator_win.cc", | 9 "direct_memory_pressure_calculator_win.cc", |
| 10 "direct_memory_pressure_calculator_win.h", |
11 "filtered_memory_pressure_calculator.cc", | 11 "filtered_memory_pressure_calculator.cc", |
12 "filtered_memory_pressure_calculator.h", | 12 "filtered_memory_pressure_calculator.h", |
13 "memory_pressure_calculator.h", | 13 "memory_pressure_calculator.h", |
14 "memory_pressure_listener.cc", | 14 "memory_pressure_listener.cc", |
15 "memory_pressure_listener.h", | 15 "memory_pressure_listener.h", |
16 "memory_pressure_stats_collector.cc", | 16 "memory_pressure_stats_collector.cc", |
17 "memory_pressure_stats_collector.h", | 17 "memory_pressure_stats_collector.h", |
18 ] | 18 ] |
19 | 19 |
20 deps = [ | 20 deps = [ |
(...skipping 10 matching lines...) Expand all Loading... |
31 "test_memory_pressure_calculator.cc", | 31 "test_memory_pressure_calculator.cc", |
32 "test_memory_pressure_calculator.h", | 32 "test_memory_pressure_calculator.h", |
33 ] | 33 ] |
34 | 34 |
35 deps = [ | 35 deps = [ |
36 ":memory_pressure", | 36 ":memory_pressure", |
37 "//base/test:test_support", | 37 "//base/test:test_support", |
38 "//testing/gtest", | 38 "//testing/gtest", |
39 ] | 39 ] |
40 } | 40 } |
OLD | NEW |