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

Side by Side Diff: components/domain_reliability/BUILD.gn

Issue 377393002: Add more components to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « components/domain_reliability.gypi ('k') | components/favicon.gypi » ('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 2014 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 action("bake_in_configs") {
6 visibility = ":*"
7 script = "bake_in_configs.py"
8
9 inputs = [
10 "baked_in_configs/apis_google_com.json",
11 "baked_in_configs/ddm_google_com.json",
12 "baked_in_configs/drive_google_com.json",
13 "baked_in_configs/mail_google_com.json",
14 "baked_in_configs/ssl_gstatic_com.json",
15 "baked_in_configs/www_google_com.json",
16 "baked_in_configs/www_youtube_com.json",
17 ]
18 outputs = [
19 "$target_gen_dir/baked_in_configs.cc",
20 ]
21
22 args = rebase_path(inputs, root_build_dir) +
23 rebase_path(outputs, root_build_dir)
24 }
25
26 component("domain_reliability") {
27 sources = [
28 "baked_in_configs.h",
29 "beacon.cc",
30 "beacon.h",
31 "clear_mode.h",
32 "config.cc",
33 "config.h",
34 "context.cc",
35 "context.h",
36 "dispatcher.cc",
37 "dispatcher.h",
38 "domain_reliability_export.h",
39 "monitor.cc",
40 "monitor.h",
41 "scheduler.cc",
42 "scheduler.h",
43 "service.cc",
44 "service.h",
45 "uploader.cc",
46 "uploader.h",
47 "util.cc",
48 "util.h",
49 ]
50 sources += get_target_outputs(":bake_in_configs")
51
52 defines = [ "DOMAIN_RELIABILITY_IMPLEMENTATION" ]
53
54 deps = [
55 ":bake_in_configs",
56 "//base",
57 "//components/keyed_service/core",
58 "//content/public/browser",
59 "//net",
60 "//url",
61 ]
62 }
OLDNEW
« no previous file with comments | « components/domain_reliability.gypi ('k') | components/favicon.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698