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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2017 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 import("//mojo/public/tools/bindings/mojom.gni")
6
7 mojom("page_load_metrics_mojom") {
8 sources = [
9 "page_load_metrics.mojom",
10 ]
11
12 public_deps = [
13 "//mojo/common:common_custom_types",
14 ]
15 }
16
17 source_set("page_load_metrics") {
18 sources = [
19 "page_load_metrics_constants.h",
20 "page_load_metrics_messages.h",
21 "page_load_metrics_param_traits.cc",
22 "page_load_metrics_param_traits.h",
23 "page_load_metrics_util.cc",
24 "page_load_metrics_util.h",
25 "page_load_timing.cc",
26 "page_load_timing.h",
27 "page_track_decider.cc",
28 "page_track_decider.h",
29 ]
30 deps = [
31 ":page_load_metrics_mojom",
32 "//base",
33 "//ipc",
34 "//net",
35 "//third_party/WebKit/public:blink_headers",
36 "//url",
37 ]
38 }
OLDNEW
« 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