Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(880)

Unified Diff: chrome/common/page_load_metrics/BUILD.gn

Issue 2952243002: Break up chrome/common:common
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/media_galleries/BUILD.gn ('k') | chrome/common/search/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/page_load_metrics/BUILD.gn
diff --git a/chrome/common/page_load_metrics/BUILD.gn b/chrome/common/page_load_metrics/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..623021a98accaac1028ef0d8222d776e252e9ed7
--- /dev/null
+++ b/chrome/common/page_load_metrics/BUILD.gn
@@ -0,0 +1,38 @@
+# Copyright 2017 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.
+
+import("//mojo/public/tools/bindings/mojom.gni")
+
+mojom("page_load_metrics_mojom") {
+ sources = [
+ "page_load_metrics.mojom",
+ ]
+
+ public_deps = [
+ "//mojo/common:common_custom_types",
+ ]
+}
+
+source_set("page_load_metrics") {
+ sources = [
+ "page_load_metrics_constants.h",
+ "page_load_metrics_messages.h",
+ "page_load_metrics_param_traits.cc",
+ "page_load_metrics_param_traits.h",
+ "page_load_metrics_util.cc",
+ "page_load_metrics_util.h",
+ "page_load_timing.cc",
+ "page_load_timing.h",
+ "page_track_decider.cc",
+ "page_track_decider.h",
+ ]
+ deps = [
+ ":page_load_metrics_mojom",
+ "//base",
+ "//ipc",
+ "//net",
+ "//third_party/WebKit/public:blink_headers",
+ "//url",
+ ]
+}
« no previous file with comments | « chrome/common/media_galleries/BUILD.gn ('k') | chrome/common/search/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698