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

Delta Between Two Patch Sets: src/devices/wifi/wscript

Issue 144050: Full Compressed Block Ack support
Left Patch Set: Created 14 years, 5 months ago
Right Patch Set: possible final patch Created 14 years, 2 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
« src/devices/wifi/qap-wifi-mac.cc ('K') | « src/devices/wifi/wifi-mac-queue.cc ('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 def build(bld): 3 def build(bld):
4 obj = bld.create_ns3_module('wifi', ['node']) 4 obj = bld.create_ns3_module('wifi', ['node'])
5 obj.source = [ 5 obj.source = [
6 'propagation-delay-model.cc', 6 'propagation-delay-model.cc',
7 'propagation-loss-model.cc', 7 'propagation-loss-model.cc',
8 'propagation-loss-model-test-suite.cc', 8 'propagation-loss-model-test-suite.cc',
9 'jakes-propagation-loss-model.cc', 9 'jakes-propagation-loss-model.cc',
10 'wifi-channel.cc', 10 'wifi-channel.cc',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 'qos-tag.cc', 51 'qos-tag.cc',
52 'qos-utils.cc', 52 'qos-utils.cc',
53 'qadhoc-wifi-mac.cc', 53 'qadhoc-wifi-mac.cc',
54 'qap-wifi-mac.cc', 54 'qap-wifi-mac.cc',
55 'qsta-wifi-mac.cc', 55 'qsta-wifi-mac.cc',
56 'edca-txop-n.cc', 56 'edca-txop-n.cc',
57 'msdu-aggregator.cc', 57 'msdu-aggregator.cc',
58 'amsdu-subframe-header.cc', 58 'amsdu-subframe-header.cc',
59 'msdu-standard-aggregator.cc', 59 'msdu-standard-aggregator.cc',
60 'minstrel-wifi-manager.cc', 60 'minstrel-wifi-manager.cc',
61 'originator-block-ack-agreement.cc',
61 'dcf.cc', 62 'dcf.cc',
62 'ctrl-headers.cc', 63 'ctrl-headers.cc',
64 'qos-blocked-destinations.cc',
63 'block-ack-agreement.cc', 65 'block-ack-agreement.cc',
64 'block-ack-manager.cc', 66 'block-ack-manager.cc',
67 'block-ack-test-suite.cc',
65 ] 68 ]
66 headers = bld.new_task_gen('ns3header') 69 headers = bld.new_task_gen('ns3header')
67 headers.module = 'wifi' 70 headers.module = 'wifi'
68 headers.source = [ 71 headers.source = [
69 'propagation-delay-model.h', 72 'propagation-delay-model.h',
70 'propagation-loss-model.h', 73 'propagation-loss-model.h',
71 'jakes-propagation-loss-model.h', 74 'jakes-propagation-loss-model.h',
72 'wifi-net-device.h', 75 'wifi-net-device.h',
73 'wifi-channel.h', 76 'wifi-channel.h',
74 'wifi-mode.h', 77 'wifi-mode.h',
(...skipping 30 matching lines...) Expand all
105 'msdu-aggregator.h', 108 'msdu-aggregator.h',
106 'amsdu-subframe-header.h', 109 'amsdu-subframe-header.h',
107 'qos-tag.h', 110 'qos-tag.h',
108 'mgt-headers.h', 111 'mgt-headers.h',
109 'status-code.h', 112 'status-code.h',
110 'capability-information.h', 113 'capability-information.h',
111 'dcf-manager.h', 114 'dcf-manager.h',
112 'mac-rx-middle.h',· 115 'mac-rx-middle.h',·
113 'mac-low.h', 116 'mac-low.h',
114 'minstrel-wifi-manager.h', 117 'minstrel-wifi-manager.h',
118 'originator-block-ack-agreement.h',
115 'dcf.h', 119 'dcf.h',
116 'ctrl-headers.h', 120 'ctrl-headers.h',
117 'block-ack-agreement.h', 121 'block-ack-agreement.h',
118 'block-ack-manager.h', 122 'block-ack-manager.h',
119 ] 123 ]
120 124
121 if bld.env['ENABLE_GSL']: 125 if bld.env['ENABLE_GSL']:
122 obj.uselib = 'GSL GSLCBLAS M' 126 obj.uselib = 'GSL GSLCBLAS M'
123 127
124 obj = bld.create_ns3_program('wifi-phy-test', 128 obj = bld.create_ns3_program('wifi-phy-test',
125 ['core', 'simulator', 'mobility', 'node', 'wifi']) 129 ['core', 'simulator', 'mobility', 'node', 'wifi'])
126 obj.source = 'wifi-phy-test.cc' 130 obj.source = 'wifi-phy-test.cc'
127 131
128 132
LEFTRIGHT

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