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

Side by Side Diff: mojo/public/dart/BUILD.gn

Issue 1027603002: Dart: Removes all but native calls and the handle watcher from the snapshot. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Fix SDK dir for SDK mojoms in Modular Created 5 years, 9 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
OLDNEW
(Empty)
1 import("../mojo_sdk.gni")
2 import("rules.gni")
3
4 dart_mojo_sdk_sources = [
5 "application.dart",
6 "bindings.dart",
7 "core.dart",
8 "src/application_connection.dart",
9 "src/application.dart",
10 "src/buffer.dart",
11 "src/codec.dart",
12 "src/data_pipe.dart",
13 "src/drain_data.dart",
14 "src/event_stream.dart",
15 "src/handle.dart",
16 "src/message.dart",
17 "src/message_pipe.dart",
18 "src/proxy.dart",
19 "src/struct.dart",
20 "src/stub.dart",
21 "src/types.dart",
22 ]
23
24 dart_package("dart") {
25 # This base dir ensures that Dart's Mojo SDK can be imported with, e.g.,
26 # import 'package:mojo/public/dart/core.dart';
27 base_dir = rebase_path("../../$mojo_root", ".", ".")
28 sources = dart_mojo_sdk_sources
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698