Chromium Code Reviews| Index: components/data_use_measurement/BUILD.gn |
| diff --git a/components/data_use_measurement/BUILD.gn b/components/data_use_measurement/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..130dbd51f42bcd12425cef093d5333fd2d988eb8 |
| --- /dev/null |
| +++ b/components/data_use_measurement/BUILD.gn |
| @@ -0,0 +1,26 @@ |
| +# Copyright 2014 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +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.
|
| + sources = [ |
| + "content/data_use_measurement.cc", |
| + "content/data_use_measurement.h", |
| + ] |
| + deps = [ |
| + ":data_use_measurement_core", |
| + "//content/public/browser", |
| + "//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.
|
| + "//net/url_request", |
| + ] |
| +} |
| + |
| +source_set("data_use_measurement_core") { |
| + sources = [ |
| + "core/data_use_user_data.cc", |
| + "core/data_use_user_data.h", |
| + ] |
| + deps = [ |
| + "//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.
|
| + ] |
| +} |