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

Side by Side Diff: content/browser/tracing/BUILD.gn

Issue 774353003: gn format // (the rest) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase net Created 6 years 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 | « components/domain_reliability/BUILD.gn ('k') | content/shell/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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 6
7 # generate_about_tracing puts its files in this directory 7 # generate_about_tracing puts its files in this directory
8 tracing_gen_dir = "$root_gen_dir/content/browser/tracing" 8 tracing_gen_dir = "$root_gen_dir/content/browser/tracing"
9 9
10 # The script just writes filename with no dirs to the .grd, so we always need 10 # The script just writes filename with no dirs to the .grd, so we always need
11 # this file to be in the same directory as the inputs. 11 # this file to be in the same directory as the inputs.
12 tracing_grd = "$tracing_gen_dir/tracing_resources.grd" 12 tracing_grd = "$tracing_gen_dir/tracing_resources.grd"
13 13
14 action("generate_tracing_grd") { 14 action("generate_tracing_grd") {
15 visibility = [ ":*" ] 15 visibility = [ ":*" ]
16 script = "generate_trace_viewer_grd.py" 16 script = "generate_trace_viewer_grd.py"
17 17
18 input_pages = [ 18 input_pages = [
19 "$tracing_gen_dir/about_tracing.html", 19 "$tracing_gen_dir/about_tracing.html",
20 "$tracing_gen_dir/about_tracing.js", 20 "$tracing_gen_dir/about_tracing.js",
21 ] 21 ]
22 inputs = input_pages 22 inputs = input_pages
23 outputs = [ tracing_grd ] 23 outputs = [
24 tracing_grd,
25 ]
24 26
25 args = rebase_path(input_pages, target_gen_dir) + [ 27 args = rebase_path(input_pages, target_gen_dir) + [
26 "--output", 28 "--output",
27 rebase_path(tracing_grd, root_build_dir), 29 rebase_path(tracing_grd, root_build_dir),
28 ] 30 ]
29 31
30 deps = [ 32 deps = [
31 "//third_party/trace-viewer:generate_about_tracing", 33 "//third_party/trace-viewer:generate_about_tracing",
32 ] 34 ]
33 } 35 }
34 36
35 grit("resources") { 37 grit("resources") {
36 source = tracing_grd 38 source = tracing_grd
37 outputs = [ 39 outputs = [
38 "grit/tracing_resources.h", 40 "grit/tracing_resources.h",
39 "tracing_resources.pak", 41 "tracing_resources.pak",
40 ] 42 ]
41 43
42 # resource_ids has an entry for our .grd file that looks like: 44 # resource_ids has an entry for our .grd file that looks like:
43 # "<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/tracing_resources.grd" 45 # "<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/tracing_resources.grd"
44 # and what we pass here should make that resolve to our .grd file. 46 # and what we pass here should make that resolve to our .grd file.
45 defines = 47 defines =
46 [ "SHARED_INTERMEDIATE_DIR=" + rebase_path(root_gen_dir, root_build_dir) ] 48 [ "SHARED_INTERMEDIATE_DIR=" + rebase_path(root_gen_dir, root_build_dir) ]
47 49
48 deps = [ 50 deps = [
49 ":generate_tracing_grd", 51 ":generate_tracing_grd",
50 ] 52 ]
51 } 53 }
OLDNEW
« no previous file with comments | « components/domain_reliability/BUILD.gn ('k') | content/shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698