Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(400)

Delta Between Two Patch Sets: src/wscript

Issue 117051: Ns-3 Net-anim Interface (Closed)
Left Patch Set: Update after Faker's comments Created 14 years, 4 months ago
Right Patch Set: Updates after Tom's comments Created 14 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/helper/wscript ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- 1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2 2
3 import os, os.path 3 import os, os.path
4 import shutil 4 import shutil
5 import types 5 import types
6 import warnings 6 import warnings
7 7
8 import TaskGen 8 import TaskGen
9 import Task 9 import Task
10 import Options 10 import Options
(...skipping 14 matching lines...) Expand all
25 'devices/tap-bridge', 25 'devices/tap-bridge',
26 'devices/virtual-net-device', 26 'devices/virtual-net-device',
27 'applications/onoff', 27 'applications/onoff',
28 'applications/packet-sink', 28 'applications/packet-sink',
29 'applications/udp-echo', 29 'applications/udp-echo',
30 'routing/nix-vector-routing', 30 'routing/nix-vector-routing',
31 'routing/olsr', 31 'routing/olsr',
32 'routing/global-routing', 32 'routing/global-routing',
33 'routing/static-routing', 33 'routing/static-routing',
34 'routing/list-routing', 34 'routing/list-routing',
35 'routing/aodv',
35 'mobility', 36 'mobility',
36 'devices/wifi', 37 'devices/wifi',
37 'helper', 38 'helper',
38 'contrib/stats', 39 'contrib/stats',
39 'applications/v4ping', 40 'applications/v4ping',
40 'devices/mesh', 41 'devices/mesh',
41 'devices/mesh/dot11s', 42 'devices/mesh/dot11s',
42 'devices/mesh/flame', 43 'devices/mesh/flame',
43 'applications/ping6', 44 'applications/ping6',
44 'applications/radvd', 45 'applications/radvd',
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 assert module_obj is not None 243 assert module_obj is not None
243 all_headers_outputs = [ns3_dir_node.find_or_declare("%s-module.h" % self .module)] 244 all_headers_outputs = [ns3_dir_node.find_or_declare("%s-module.h" % self .module)]
244 task = self.create_task('gen_ns3_module_header', self.env) 245 task = self.create_task('gen_ns3_module_header', self.env)
245 task.set_inputs(all_headers_inputs) 246 task.set_inputs(all_headers_inputs)
246 task.set_outputs(all_headers_outputs) 247 task.set_outputs(all_headers_outputs)
247 task.module = self.module 248 task.module = self.module
248 task.module_deps = module_obj.module_deps 249 task.module_deps = module_obj.module_deps
249 250
250 def install(self): 251 def install(self):
251 pass 252 pass
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b