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

Side by Side Diff: mojo/public/dart/rules.gni

Issue 1147223006: Rename internal Dart content handler unit testing library to _testing (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 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 | « mojo/dart/testing/pubspec.yaml ('k') | sky/sdk/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Rules to generate zipped applications for Dart. 5 # Rules to generate zipped applications for Dart.
6 # Rules to generate dart-pkg and dart-pkg/packages. 6 # Rules to generate dart-pkg and dart-pkg/packages.
7 7
8 import("//build/module_args/mojo.gni") 8 import("//build/module_args/mojo.gni")
9 9
10 template("dartzip_package") { 10 template("dartzip_package") {
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 } 272 }
273 273
274 script = rebase_path("mojo/public/tools/dart_pkg.py", ".", mojo_sdk_root) 274 script = rebase_path("mojo/public/tools/dart_pkg.py", ".", mojo_sdk_root)
275 outputs = [ 275 outputs = [
276 stamp_file, 276 stamp_file,
277 ] 277 ]
278 278
279 inputs = [ 279 inputs = [
280 list_mojoms_script, 280 list_mojoms_script,
281 script, 281 script,
282 ] + rebase_path(invoker.sources) + rebase_path(sdk_ext_directory) 282 ] + rebase_path(invoker.sources)
283 283
284 args = [ 284 args = [
285 "--package-name", 285 "--package-name",
286 package_name, 286 package_name,
287 "--gen-directory", 287 "--gen-directory",
288 rebase_path("$root_gen_dir/dart-gen"), 288 rebase_path("$root_gen_dir/dart-gen"),
289 "--pkg-directory", 289 "--pkg-directory",
290 pkg_directory, 290 pkg_directory,
291 "--package-root", 291 "--package-root",
292 package_root, 292 package_root,
293 "--stamp-file", 293 "--stamp-file",
294 rebase_path(stamp_file), 294 rebase_path(stamp_file),
295 "--package-sources", 295 "--package-sources",
296 ] + rebase_path(invoker.sources) + [ "--mojom-sources" ] + 296 ] + rebase_path(invoker.sources) + [ "--mojom-sources" ] +
297 rebase_path(mojom_sources, "", mojo_sdk_root) + 297 rebase_path(mojom_sources, "", mojo_sdk_root) +
298 [ "--sdk-ext-directories" ] + rebase_path(sdk_ext_directory) 298 [ "--sdk-ext-directories" ] + rebase_path(sdk_ext_directory)
299 } 299 }
300 } 300 }
OLDNEW
« no previous file with comments | « mojo/dart/testing/pubspec.yaml ('k') | sky/sdk/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698