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

Side by Side Diff: chrome/chrome_elf.gypi

Issue 53793002: Initial implementation of Chrome Early Loading Framework (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Assemblies Created 7 years, 1 month 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
OLDNEW
(Empty)
1 {
2
3 'includes': [
4 'version.gypi',
5 ],
6 'targets': [
7 {
8 'target_name': 'chrome_elf',
grt (UTC plus 2) 2013/11/05 03:08:36 does this target depend on anything in src/chrome?
Cait (Slow) 2013/11/05 05:39:06 I was wondering this too. I've moved it up a level
9 'type': 'shared_library',
10 'include_dirs': [
11 '..',
12 ],
13 'sources': [
14 'chrome_elf/chrome_elf.def',
15 'chrome_elf/chrome_elf_main.cc',
16 'chrome_elf/chrome_elf_main.h',
17 ],
18 'dependencies' : [
19 'chrome_exe_manifest',
20 ]
21 },
22 {
23 'target_name': 'chrome_exe_manifest',
24 'type': 'none',
25 'sources': [
26 'chrome_elf/chrome_exe_manifest.template',
27 ],
28 'rules': [
robertshield 2013/11/05 02:23:55 Thinking about this a bit more, I believe there is
Cait (Slow) 2013/11/05 05:39:06 Done.
29 {
30 'rule_name': 'chrome_exe_manifest',
31 'extension': 'template',
32 'variables': {
33 'template_input_path':
34 'chrome_elf/chrome_exe_manifest.template',
35 },
36 'inputs': [
37 '<(template_input_path)',
38 '<(version_path)',
39 ],
40 'outputs': [
41 '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/version_assembly.manifest',
42 ],
43 'action': [
44 'python', '<(version_py_path)',
45 '-f', '<(version_path)',
46 '<(template_input_path)',
47 '<@(_outputs)',
48 ],
49 'process_outputs_as_sources': 0,
50 'message': 'Generating additional manifest files'
51 },
52 ],
53 },
54 ],
55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698