Lines Matching +full:d3 +full:- +full:path
2 # Use of this source code is governed by a BSD-style license that can be
10 def _AddToPathIfNeeded(path): argument
11 if path not in sys.path:
12 sys.path.insert(0, path)
16 for path in GetDependencyPaths():
17 _AddToPathIfNeeded(path)
29 os.path.join(p.catapult_third_party_path, 'WebOb'),
30 os.path.join(p.catapult_third_party_path, 'Paste'),
31 os.path.join(p.catapult_third_party_path, 'six'),
32 os.path.join(p.catapult_third_party_path, 'webapp2'),
33 os.path.join(p.catapult_path, 'common', 'py_utils'),
34 os.path.join(p.tracing_third_party_path, 'symbols')
46 x = os.path.abspath(os.path.join(dirpath, f))
68 catapult_path = os.path.abspath(
69 os.path.join(os.path.dirname(__file__), os.path.pardir))
71 tracing_root_path = os.path.join(catapult_path, 'tracing')
72 trace_processor_root_path = os.path.join(catapult_path, 'trace_processor')
73 common_root_path = os.path.join(catapult_path, 'common')
74 tracing_src_path = os.path.join(tracing_root_path, 'tracing')
75 extras_path = os.path.join(tracing_src_path, 'extras')
76 ui_extras_path = os.path.join(tracing_src_path, 'ui', 'extras')
78 catapult_third_party_path = os.path.join(catapult_path, 'third_party')
79 polymer_path = os.path.join(catapult_third_party_path, 'polymer')
83 protobuf_path = os.path.join(
86 tracing_third_party_path = os.path.join(tracing_root_path, 'third_party')
87 py_vulcanize_path = os.path.join(common_root_path, 'py_vulcanize')
88 vinn_path = os.path.join(catapult_third_party_path, 'vinn')
90 jszip_path = os.path.join(tracing_third_party_path, 'jszip')
91 pako_path = os.path.join(tracing_third_party_path, 'pako')
92 jpegjs_path = os.path.join(tracing_third_party_path, 'jpeg-js')
94 glmatrix_path = os.path.join(
95 tracing_third_party_path, 'gl-matrix', 'dist')
97 mannwhitneyu_path = os.path.join(
100 ui_path = os.path.join(tracing_src_path, 'ui')
101 d3_path = os.path.join(tracing_third_party_path, 'd3')
102 chai_path = os.path.join(tracing_third_party_path, 'chai')
103 mocha_path = os.path.join(tracing_third_party_path, 'mocha')
104 oboe_path = os.path.join(tracing_third_party_path, 'oboe')
106 mre_path = os.path.join(tracing_src_path, 'mre')
108 metrics_path = os.path.join(tracing_src_path, 'metrics')
109 diagnostics_path = os.path.join(tracing_src_path, 'value', 'diagnostics')
111 value_ui_path = os.path.join(tracing_src_path, 'value', 'ui')
112 metrics_ui_path = os.path.join(tracing_src_path, 'metrics', 'ui')
114 test_data_path = os.path.join(tracing_root_path, 'test_data')
115 skp_data_path = os.path.join(tracing_root_path, 'skp_data')
117 rjsmin_path = os.path.join(
119 rcssmin_path = os.path.join(
163 return [os.path.relpath(x, self.tracing_root_path)
173 return [os.path.relpath(x, self.tracing_root_path)
183 return [os.path.relpath(x, self.tracing_root_path)
191 os.path.join(self.ui_extras_path, x)
196 config_files = [x for x in config_files if os.path.isfile(x)]
198 config_basenames = [os.path.basename(x) for x in config_files]
210 '--config', dest='config_name',