Index: components/metrics.gypi |
diff --git a/components/metrics.gypi b/components/metrics.gypi |
index f3dc749d0f89766fbe4769935a2fa175deb3897d..e52a1711e17611ce3acf3dcea6abb8300b3bfe55 100644 |
--- a/components/metrics.gypi |
+++ b/components/metrics.gypi |
@@ -53,7 +53,7 @@ |
'conditions': [ |
['chromeos==1', { |
'dependencies': [ |
- 'metrics_chromeos', |
+ 'metrics_external_utils', |
], |
}], |
['OS=="win"', { |
@@ -123,24 +123,18 @@ |
'metrics/test_metrics_service_client.h', |
], |
}, |
- ], |
- 'conditions': [ |
- ['chromeos==1', { |
- 'targets': [ |
- { |
- 'target_name': 'metrics_chromeos', |
- 'type': 'static_library', |
- 'sources': [ |
- 'metrics/chromeos/serialization_utils.cc', |
- 'metrics/chromeos/serialization_utils.h', |
- 'metrics/chromeos/metric_sample.cc', |
- 'metrics/chromeos/metric_sample.h', |
- ], |
- 'dependencies': [ |
- '../base/base.gyp:base', |
- ], |
- }, |
+ { |
+ 'target_name': 'metrics_external_utils', |
Ilya Sherman
2014/07/16 03:31:46
nit: This should probably be named "metrics_extern
|
+ 'type': 'static_library', |
+ 'sources': [ |
+ 'metrics/external/serialization_utils.cc', |
+ 'metrics/external/serialization_utils.h', |
+ 'metrics/external/metric_sample.cc', |
+ 'metrics/external/metric_sample.h', |
], |
- }], |
+ 'dependencies': [ |
+ '../base/base.gyp:base', |
+ ], |
+ }, |
], |
} |