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

Side by Side Diff: remoting/tools/build/message_compiler.gni

Issue 969173002: Add remoting and PPAPI tests to GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | « remoting/resources/BUILD.gn ('k') | remoting/tools/build/message_compiler.py » ('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 2015 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 assert(is_win, "This only runs on Windows.")
6
7 # Runs mc.exe over a list of sources.
8 #
9 # sources
10 # List of .mc files to process.
11 template("message_compiler") {
12 action_name = "${target_name}_mc"
13 source_set_name = target_name
14
15 action_foreach(action_name) {
16 visibility = [ ":$source_set_name" ]
17 script = "//remoting/tools/build/message_compiler.py"
18
19 sources = invoker.sources
20
21 outputs = [
22 "$target_gen_dir/{{source_name_part}}.h",
23 "$target_gen_dir/{{source_name_part}}.rc",
24 ]
25
26 args = [
27 # Where to put the header.
28 "-h",
29 rebase_path(target_gen_dir, root_build_dir),
30
31 # Where to put the .rc file.
32 "-r",
33 rebase_path(target_gen_dir, root_build_dir),
34
35 # Input is Unicode.
36 "-u",
37 "{{source}}",
38 ]
39
40 if (defined(invoker.deps)) {
41 deps = invoker.deps
42 }
43 }
44
45 source_set(source_set_name) {
46 sources = get_target_outputs(":$action_name")
47 deps = [
48 ":$action_name",
49 ]
50 }
51 }
OLDNEW
« no previous file with comments | « remoting/resources/BUILD.gn ('k') | remoting/tools/build/message_compiler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698