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

Side by Side Diff: test/dependencies/adso/all_dependent_settings_order.gyp

Issue 1182323007: Make DependencyGraph.DeepDependencies() depth-first. (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: doc comment Created 5 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 | « pylib/gyp/input.py ('k') | test/dependencies/adso/write_args.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 {
2 'targets': [
3 {
4 'target_name': 'a',
5 'type': 'none',
6 'sources': ['a.cc'],
7 'all_dependent_settings': {'sources': ['a.cc']},
8 },
9 {
10 'target_name': 'b',
11 'type': 'none',
12 'sources': ['b.cc'],
13 'all_dependent_settings': {'sources': ['b.cc']},
14 'dependencies': ['a'],
15 },
16
17 {
18 'target_name': 'c',
19 'type': 'none',
20 'sources': ['c.cc'],
21 'all_dependent_settings': {'sources': ['c.cc']},
22 'dependencies': ['b', 'a'],
23 },
24 {
25 'target_name': 'd',
26 'type': 'none',
27 'sources': ['d.cc'],
28 'dependencies': ['c', 'a', 'b'],
29 'actions': [
30 {
31 'action_name': 'write_sources',
32 'inputs': ['write_args.py'],
33 'outputs': ['<(PRODUCT_DIR)/out.txt'],
34 'action': [
35 'python',
36 'write_args.py',
37 '<(PRODUCT_DIR)/out.txt',
38 '>@(_sources)'
39 ],
40 'msvs_cygwin_shell': 0,
41 },
42 ],
43 },
44 ],
45 }
OLDNEW
« no previous file with comments | « pylib/gyp/input.py ('k') | test/dependencies/adso/write_args.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698