Home
last modified time | relevance | path

Searched +full:build +full:- +full:dart (Results 1 – 25 of 52) sorted by relevance

123

/external/protobuf/examples/
DREADME.md1 # Protocol Buffers - Code Example
12 https://developers.google.com/protocol-buffers/docs/tutorials
14 ## Build the example using bazel
16 The example requires bazel 0.5.4 or newer to build. You can download/install
22 directory to build the code:
24 $ bazel build :all
28 $ bazel-bin/add_person_cpp addressbook.data
31 [BUILD](BUILD) file and [WORKSPACE](WORKSPACE) file.
33 ## Build the example using make
35 You must install the protobuf package before you can build it using make. The
[all …]
DMakefile8 dart: add_person_dart list_people_dart target
15 …rm -f add_person_cpp list_people_cpp add_person_java list_people_java add_person_python list_peopl…
16 rm -f javac_middleman AddPerson*.class ListPeople*.class com/example/tutorial/*.class
17 …rm -f protoc_middleman addressbook.pb.cc addressbook.pb.h addressbook_pb2.py com/example/tutorial/…
18 rm -f *.pyc
19 rm -f go/tutorialpb/*.pb.go add_person_go list_people_go
20 rm -f protoc_middleman_dart dart_tutorial/*.pb*.dart
28 protoc $$PROTO_PATH --cpp_out=. --java_out=. --python_out=. addressbook.proto
32 mkdir -p go/tutorialpb # make directory for go package
33 protoc $$PROTO_PATH --go_opt=paths=source_relative --go_out=go/tutorialpb addressbook.proto
[all …]
DBUILD.bazel1 # This BUILD file shows how to use protobuf with bazel. Before you can use
2 # proto_library/<lang>_proto_library rules in a BUILD file, you need to
4 # the WORKSPACE file in the same directory with this BUILD file for an
81 # share code between server build and Android build).
86 # $ bazel build :add_person_java_deploy.jar :add_person_java_lite_deploy.jar
87 # $ ls -l bazel-bin/*_deploy.jar
88 # -r-xr-xr-x 1 xiaofeng eng 1230797 Sep 8 12:24 bazel-bin/add_person_java_deploy.jar
89 # -r-xr-xr-x 1 xiaofeng eng 236166 Sep 8 12:24 bazel-bin/add_person_java_lite_deploy.jar
113 "BUILD.bazel",
120 "add_person.dart",
[all …]
/external/cronet/third_party/protobuf/examples/
DREADME.md1 # Protocol Buffers - Code Example
12 https://developers.google.com/protocol-buffers/docs/tutorials
14 ## Build the example using bazel
16 The example requires bazel 0.5.4 or newer to build. You can download/install
22 directory to build the code:
24 $ bazel build :all
28 $ bazel-bin/add_person_cpp addressbook.data
31 [BUILD](BUILD) file and [WORKSPACE](WORKSPACE) file.
33 ## Build the example using make
35 You must install the protobuf package before you can build it using make. The
[all …]
/external/flatbuffers/
D.gitignore4 **/.build
5 build
42 **/x64/ #build artifacts from VS
43 build.xml
46 proguard-project.txt
83 build/Xcode/FlatBuffers.xcodeproj/project.xcworkspace/**
84 build/Xcode/FlatBuffers.xcodeproj/xcuserdata/**
92 build/VS2010/FlatBuffers.sdf
93 build/VS2010/FlatBuffers.opensdf
94 build/VS2010/ipch/**/*.ipch
[all …]
/external/flatbuffers/samples/
Ddart_sample.sh2 set -euo
10 # http://www.apache.org/licenses/LICENSE-2.0
33 if [ -e ../flatc ]; then
34 ../flatc --dart -o ../dart/example/ monster.fbs
35 elif [ -e ../Debug/flatc ]; then
36 ../Debug/flatc --dart -o ../dart/example/ monster.fbs
38 echo 'flatc' could not be found. Make sure to build FlatBuffers from the \
43 echo Running the Dart sample.
46 dart ../dart/example/example.dart
49 cp monster.fbs ../dart/example/
/external/flatbuffers/docs/source/
DDartUsage.md1 Use in Dart {#flatbuffers_guide_use_dart}
6 Before diving into the FlatBuffers usage in Dart, it should be noted that
8 to general FlatBuffers usage in all of the supported languages (including Dart).
10 Dart.
13 documentation to build `flatc` and should be familiar with
17 ## FlatBuffers Dart library code location
19 The code for the FlatBuffers Dart library can be found at
20 `flatbuffers/dart`. You can browse the library code on the [FlatBuffers
21 GitHub page](https://github.com/google/flatbuffers/tree/master/dart).
23 ## Testing the FlatBuffers Dart library
[all …]
DTutorial.md10 - Write a FlatBuffer `schema` file.
11 - Use the `flatc` FlatBuffer compiler.
12 - Parse [JSON](http://json.org) files that conform to a schema into
14 - Use the generated files in many of the supported languages (such as C++,
34 <input type="radio" name="language" value="dart">Dart</input>
45 * Check if an HTML `class` attribute is in the language-specific format.
47 * 'language-{lang}', where {lang} is a programming language (e.g. 'cpp',
50 * format, prefixed with 'language-'. Otherwise, it returns false.
53 if (languageClass && languageClass.substring(0, 9) == 'language-' &&
62 * Given a language-specific HTML `class` attribute, extract the language.
[all …]
/external/flatbuffers/dart/
DREADME.md1 # FlatBuffers for Dart
5 Most consumers will want to use the [`flatc` - FlatBuffer compiler](https://github.com/google/flatb…
8 The FlatBuffer compiler `flatc` reads a FlatBuffers IDL schema and generates Dart code.
10 other languages and platforms supported by FlatBuffers, as illustrated in the `example.dart` in the
15 [use FlatBuffers in Dart](https://google.github.io/flatbuffers/flatbuffers_guide_use_dart.html).
17 ## Dart 2.0 notes
18 Version 2.0.5 ships with it's own custom build of `flatc` because this is an extraordinary release …
19 with FlatBuffers for other platforms. This generator can only generate dart code (to avoid generati…
21 In other words: only `flatc --dart ...` works with this generator, but your app will be able to pro…
/external/skia/docker/binary-size/
DDockerfile2 # to build treemaps of code size for executables.
3 FROM alpine:latest as dart-sdk-checkout
10 RUN git clone --depth 1 https://github.com/dart-lang/sdk.git
13 # Multi-stage build part 2, in which we only have the python runtime and
24 COPY --from=dart-sdk-checkout /tmp/sdk/runtime/third_party/ /opt/
/external/oss-fuzz/projects/dart/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
17 FROM gcr.io/oss-fuzz-base/base-builder
18 RUN apt-get update && apt install -y g++-multilib git python curl
20 RUN git clone --depth 1 https://chromium.googlesource.com/chromium/tools/depot_tools.git
22 RUN mkdir dart-sdk && cd dart-sdk && fetch dart
23 COPY build.sh $SRC
25 WORKDIR $SRC/dart-sdk/sdk
/external/protobuf/
DREADME.md1 Protocol Buffers - Google's data interchange format
6 https://developers.google.com/protocol-buffers/
9 --------
11 Protocol Buffers (a.k.a., protobuf) are Google's language-neutral,
12 platform-neutral, extensible mechanism for serializing structured data. You
13 …uf's documentation on the Google Developers site](https://developers.google.com/protocol-buffers/).
20 ------------------------------
26 For non-C++ users, the simplest way to install the protocol compiler is to
27 download a pre-built binary from our release page:
31 In the downloads section of each release, you can find pre-built binaries in
[all …]
/external/cronet/third_party/protobuf/
DREADME.md1 Protocol Buffers - Google's data interchange format
6 https://developers.google.com/protocol-buffers/
9 --------
11 Protocol Buffers (a.k.a., protobuf) are Google's language-neutral,
12 platform-neutral, extensible mechanism for serializing structured data. You
13 …uf's documentation on the Google Developers site](https://developers.google.com/protocol-buffers/).
20 ------------------------------
26 For non-C++ users, the simplest way to install the protocol compiler is to
27 download a pre-built binary from our release page:
31 In the downloads section of each release, you can find pre-built binaries in
[all …]
/external/grpc-grpc/
DREADME.md3 gRPC is a modern, open source, high-performance remote procedure call (RPC)
14 <td><a href="https://groups.google.com/forum/#!forum/grpc-io">grpc-io@googlegroups.com</a></td>
18 …ttps://gitter.im/grpc/grpc?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=bad…
26 For instructions on how to use the language-specific gRPC runtime for a project,
29 - [C++](src/cpp): follow the instructions under the `src/cpp` directory
30 - [C#/.NET](https://github.com/grpc/grpc-dotnet): NuGet packages
32 - [Dart](https://github.com/grpc/grpc-dart): pub package `grpc`
33 - [Go](https://github.com/grpc/grpc-go): `go get google.golang.org/grpc`
34 - [Java](https://github.com/grpc/grpc-java): Use JARs from Maven Central
36 - [Kotlin](https://github.com/grpc/grpc-kotlin): Use JARs from Maven Central
[all …]
/external/rust/crates/grpcio-sys/grpc/
DREADME.md3 gRPC is a modern, open source, high-performance remote procedure call (RPC)
14 <td><a href="https://groups.google.com/forum/#!forum/grpc-io">grpc-io@googlegroups.com</a></td>
18 …ttps://gitter.im/grpc/grpc?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=bad…
26 For instructions on how to use the language-specific gRPC runtime for a project,
29 - [C++](src/cpp): follow the instructions under the `src/cpp` directory
30 - [C#/.NET](https://github.com/grpc/grpc-dotnet): NuGet packages `Grpc.Net.Client`, `Grpc.AspNetCor…
31 - [Dart](https://github.com/grpc/grpc-dart): pub package `grpc`
32 - [Go](https://github.com/grpc/grpc-go): `go get google.golang.org/grpc`
33 - [Java](https://github.com/grpc/grpc-java): Use JARs from Maven Central
35 - [Kotlin](https://github.com/grpc/grpc-kotlin): Use JARs from Maven Central
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/dockerize/
Dbuild_interop_image.sh8 # http://www.apache.org/licenses/LICENSE-2.0
16 # This script is invoked by run_interop_tests.py to build the docker image
19 set -ex
22 # INTEROP_IMAGE - name of tag of the final interop image
23 # BASE_NAME - base name used to locate the base Dockerfile and build script
24 # BUILD_INTEROP_DOCKER_EXTRA_ARGS - optional args to be passed to the
26 # GRPC_ROOT - grpc base directory, default to top of this tree.
27 # GRPC_GO_ROOT - grpc-go base directory, default to '$GRPC_ROOT/../grpc-go'
28 # GRPC_JAVA_ROOT - grpc-java base directory, default to '$GRPC_ROOT/../grpc-java'
32 MOUNT_ARGS="-v $GRPC_ROOT:/var/local/jenkins/grpc:ro"
[all …]
/external/grpc-grpc/tools/run_tests/dockerize/
Dbuild_interop_image.sh8 # http://www.apache.org/licenses/LICENSE-2.0
16 # This script is invoked by run_interop_tests.py to build the docker image
19 set -ex
22 # INTEROP_IMAGE - name of tag of the final interop image
23 # BASE_NAME - base name used to locate the base Dockerfile and build script
24 # BUILD_INTEROP_DOCKER_EXTRA_ARGS - optional args to be passed to the
26 # GRPC_ROOT - grpc base directory, default to top of this tree.
27 # GRPC_GO_ROOT - grpc-go base directory, default to '$GRPC_ROOT/../grpc-go'
28 # GRPC_JAVA_ROOT - grpc-java base directory, default to '$GRPC_ROOT/../grpc-java'
32 MOUNT_ARGS="-v $GRPC_ROOT:/var/local/jenkins/grpc:ro"
[all …]
/external/flatbuffers/.github/workflows/
Dbuild.yml2 permissions: read-all
9 - "*" # new tag version, like `0.8.4` or else
11 - master
14 - master
17 build-linux:
21 digests-gcc: ${{ steps.hash-gcc.outputs.hashes }}
22 digests-clang: ${{ steps.hash-clang.outputs.hashes }}
23 name: Build Linux
24 runs-on: ubuntu-latest
27 cxx: [g++-10, clang++-12]
[all …]
/external/grpc-grpc/tools/run_tests/
Drun_interop_tests.py8 # http://www.apache.org/licenses/LICENSE-2.0
15 """Run interop (cross-language) tests in parallel."""
90 # disable this test on core-based languages,
107 return ["cmake/build/interop_client"] + args
110 return ["cmake/build/http2_client"] + args
116 return ["cmake/build/interop_server"] + args
137 self.client_cwd = "../grpc-dotnet/output/InteropTestsClient"
138 self.server_cwd = "../grpc-dotnet/output/InteropTestsWebsite"
169 self.client_cwd = "../grpc-dart/interop"
170 self.server_cwd = "../grpc-dart/interop"
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/
Drun_interop_tests.py8 # http://www.apache.org/licenses/LICENSE-2.0
15 """Run interop (cross-language) tests in parallel."""
86 # disable this test on core-based languages,
104 return ['cmake/build/interop_client'] + args
107 return ['cmake/build/http2_client'] + args
113 return ['cmake/build/interop_server'] + args
133 self.client_cwd = '../grpc-dotnet/output/InteropTestsClient'
134 self.server_cwd = '../grpc-dotnet/output/InteropTestsWebsite'
164 self.client_cwd = '../grpc-dart/interop'
165 self.server_cwd = '../grpc-dart/interop'
[all …]
/external/rust/crates/uniffi/
DREADME.md1 # UniFFI - a multi-language bindings generator for Rust
3 UniFFI is a toolkit for building cross-platform software components in Rust.
5 For the impatient, see [**the UniFFI user guide**](https://mozilla.github.io/uniffi-rs/)
6 …*the UniFFI examples**](https://github.com/mozilla/uniffi-rs/tree/main/examples#example-uniffi-com…
14 …ect model in an [interface definition file](https://mozilla.github.io/uniffi-rs/udl_file_spec.html)
15 or [by using proc-macros](https://mozilla.github.io/uniffi-rs/proc_macro/index.html).
18 written once in Rust, auto-generated bindings allow that functionality to be called
24 See [Third-party foreign language bindings](#third-party-foreign-language-bindings).
28 …ead more about using the tool in [**the UniFFI user guide**](https://mozilla.github.io/uniffi-rs/).
39 uni - [Latin ūni-, from ūnus, one]
[all …]
/external/rust/crates/uniffi_checksum_derive/
DREADME.md1 # UniFFI - a multi-language bindings generator for Rust
3 UniFFI is a toolkit for building cross-platform software components in Rust.
5 For the impatient, see [**the UniFFI user guide**](https://mozilla.github.io/uniffi-rs/)
6 …*the UniFFI examples**](https://github.com/mozilla/uniffi-rs/tree/main/examples#example-uniffi-com…
14 …ect model in an [interface definition file](https://mozilla.github.io/uniffi-rs/udl_file_spec.html)
15 or [by using proc-macros](https://mozilla.github.io/uniffi-rs/proc_macro/index.html).
18 written once in Rust, auto-generated bindings allow that functionality to be called
24 See [Third-party foreign language bindings](#third-party-foreign-language-bindings).
28 …ead more about using the tool in [**the UniFFI user guide**](https://mozilla.github.io/uniffi-rs/).
39 uni - [Latin ūni-, from ūnus, one]
[all …]
/external/rust/crates/uniffi_meta/
DREADME.md1 # UniFFI - a multi-language bindings generator for Rust
3 UniFFI is a toolkit for building cross-platform software components in Rust.
5 For the impatient, see [**the UniFFI user guide**](https://mozilla.github.io/uniffi-rs/)
6 …*the UniFFI examples**](https://github.com/mozilla/uniffi-rs/tree/main/examples#example-uniffi-com…
14 …ect model in an [interface definition file](https://mozilla.github.io/uniffi-rs/udl_file_spec.html)
15 or [by using proc-macros](https://mozilla.github.io/uniffi-rs/proc_macro/index.html).
18 written once in Rust, auto-generated bindings allow that functionality to be called
24 See [Third-party foreign language bindings](#third-party-foreign-language-bindings).
28 …ead more about using the tool in [**the UniFFI user guide**](https://mozilla.github.io/uniffi-rs/).
39 uni - [Latin ūni-, from ūnus, one]
[all …]
/external/rust/crates/uniffi_core/
DREADME.md1 # UniFFI - a multi-language bindings generator for Rust
3 UniFFI is a toolkit for building cross-platform software components in Rust.
5 For the impatient, see [**the UniFFI user guide**](https://mozilla.github.io/uniffi-rs/)
6 …*the UniFFI examples**](https://github.com/mozilla/uniffi-rs/tree/main/examples#example-uniffi-com…
14 …ect model in an [interface definition file](https://mozilla.github.io/uniffi-rs/udl_file_spec.html)
15 or [by using proc-macros](https://mozilla.github.io/uniffi-rs/proc_macro/index.html).
18 written once in Rust, auto-generated bindings allow that functionality to be called
24 See [Third-party foreign language bindings](#third-party-foreign-language-bindings).
28 …ead more about using the tool in [**the UniFFI user guide**](https://mozilla.github.io/uniffi-rs/).
39 uni - [Latin ūni-, from ūnus, one]
[all …]
/external/rust/crates/uniffi_macros/
DREADME.md1 # UniFFI - a multi-language bindings generator for Rust
3 UniFFI is a toolkit for building cross-platform software components in Rust.
5 For the impatient, see [**the UniFFI user guide**](https://mozilla.github.io/uniffi-rs/)
6 …*the UniFFI examples**](https://github.com/mozilla/uniffi-rs/tree/main/examples#example-uniffi-com…
14 …ect model in an [interface definition file](https://mozilla.github.io/uniffi-rs/udl_file_spec.html)
15 or [by using proc-macros](https://mozilla.github.io/uniffi-rs/proc_macro/index.html).
18 written once in Rust, auto-generated bindings allow that functionality to be called
24 See [Third-party foreign language bindings](#third-party-foreign-language-bindings).
28 …ead more about using the tool in [**the UniFFI user guide**](https://mozilla.github.io/uniffi-rs/).
39 uni - [Latin ūni-, from ūnus, one]
[all …]

123