| Index: runtime/BUILD.gn
|
| diff --git a/runtime/BUILD.gn b/runtime/BUILD.gn
|
| index e9c339a3517a5373bbcdcc358c8ada4c27ee60d4..cbc064398d7b5fa50dbc9cb7073622e376fa502e 100644
|
| --- a/runtime/BUILD.gn
|
| +++ b/runtime/BUILD.gn
|
| @@ -13,6 +13,12 @@ declare_args() {
|
| dart_debug = false
|
| }
|
|
|
| +config("dart_public_config") {
|
| + include_dirs = [
|
| + ".",
|
| + ]
|
| +}
|
| +
|
| config("dart_config") {
|
| defines = []
|
| if (dart_debug) {
|
| @@ -66,6 +72,7 @@ static_library("libdart") {
|
| include_dirs = [
|
| ".",
|
| ]
|
| + public_configs = [":dart_public_config"]
|
| sources = [
|
| "include/dart_api.h",
|
| "include/dart_mirrors_api.h",
|
|
|