diff options
author | aberent@chromium.org <aberent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-03 12:09:17 +0000 |
---|---|---|
committer | aberent@chromium.org <aberent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-03 12:09:17 +0000 |
commit | 7a83dd07d761464a5da42721e0353d178a22e8fa (patch) | |
tree | f9569778b26ff7d9a68b2df1e88a6a2fc5b01f6c /components/startup_metric_utils.gypi | |
parent | 97b13a790979dce3f9dec99e6cefccfcc4de8ae5 (diff) | |
download | chromium_src-7a83dd07d761464a5da42721e0353d178a22e8fa.zip chromium_src-7a83dd07d761464a5da42721e0353d178a22e8fa.tar.gz chromium_src-7a83dd07d761464a5da42721e0353d178a22e8fa.tar.bz2 |
Move startup_metric_utils.* to a new component
startup_metric_utils is currently in chrome/common, but is only used
by the browser. It can't be in chrome/browser because it is used by
browser/bookmarks, which is becoming a component. To fix this create
a new startup_metrics_utils component.
BUG=280523
Review URL: https://chromiumcodereview.appspot.com/23515005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220932 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/startup_metric_utils.gypi')
-rw-r--r-- | components/startup_metric_utils.gypi | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/components/startup_metric_utils.gypi b/components/startup_metric_utils.gypi new file mode 100644 index 0000000..55763c8 --- /dev/null +++ b/components/startup_metric_utils.gypi @@ -0,0 +1,22 @@ +# Copyright 2013 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. + +{ + 'targets': [ + { + 'target_name': 'startup_metric_utils', + 'type': 'static_library', + 'dependencies': [ + '../base/base.gyp:base', + ], + 'include_dirs': [ + '..', + ], + 'sources': [ + 'startup_metric_utils/startup_metric_utils.cc', + 'startup_metric_utils/startup_metric_utils.h', + ], + }, + ], +} |