Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 source_set("data_use_measurement_content") { | |
|
blundell
2015/08/31 09:15:40
It's preferred in GN to just put a BUILD.gn file i
amohammadkhan
2015/09/01 04:52:48
Done.
| |
| 6 sources = [ | |
| 7 "content/data_use_measurement.cc", | |
| 8 "content/data_use_measurement.h", | |
| 9 ] | |
| 10 deps = [ | |
| 11 ":data_use_measurement_core", | |
| 12 "//content/public/browser", | |
| 13 "//net/base", | |
|
blundell
2015/08/31 09:15:40
the //net deps here don't seem to exactly match th
amohammadkhan
2015/09/01 04:52:48
Done.
| |
| 14 "//net/url_request", | |
| 15 ] | |
| 16 } | |
| 17 | |
| 18 source_set("data_use_measurement_core") { | |
| 19 sources = [ | |
| 20 "core/data_use_user_data.cc", | |
| 21 "core/data_use_user_data.h", | |
| 22 ] | |
| 23 deps = [ | |
| 24 "//net/base", | |
|
blundell
2015/08/31 09:15:40
the deps here don't match the ones in GYP.
amohammadkhan
2015/09/01 04:52:48
Done.
| |
| 25 ] | |
| 26 } | |
| OLD | NEW |