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 | |
5 { | 4 { |
6 'targets': [ | 5 'targets': [ |
7 { | 6 { |
8 'target_name': 'browsing_data', | 7 'target_name': 'data_use_measurement', |
sclittle
2015/08/21 23:55:33
separate the core/ and content/ stuff into differe
amohammadkhan
2015/08/26 22:28:40
Done.
| |
9 'type': 'static_library', | 8 'type': 'static_library', |
10 'dependencies': [ | 9 'dependencies': [ |
11 '../base/base.gyp:base', | 10 '../base/base.gyp:base', |
12 '../content/content.gyp:content_browser', | 11 '../content/content.gyp:content_browser', |
13 '../net/net.gyp:net', | 12 '../net/net.gyp:net', |
14 ], | 13 ], |
15 'include_dirs': [ | |
16 '..', | |
17 ], | |
18 'sources': [ | 14 'sources': [ |
19 # Note: sources list duplicated in GN build. | 15 'data_use_measurement/content/data_use_user_data.cc', |
20 'browsing_data/storage_partition_http_cache_data_remover.cc', | 16 'data_use_measurement/content/data_use_user_data.h', |
21 'browsing_data/storage_partition_http_cache_data_remover.h', | 17 'data_use_measurement/core/data_use_measurement.cc', |
22 ], | 18 'data_use_measurement/core/data_use_measurement.h', |
23 }, | 19 ] |
24 ], | 20 } |
21 ] | |
25 } | 22 } |
OLD | NEW |