| # Copyright 2014 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| source_set("dart_controller_no_snapshot") { |
| sources = [ |
| "builtin.cc", |
| "builtin.h", |
| "builtin_natives.cc", |
| "dart_controller.cc", |
| "dart_controller.h", |
| "isolate_data.h", |
| "mojo_natives.cc", |
| "mojo_natives.h", |
| ] |
| |
| deps = [ |
| "//base", |
| "//base:i18n", |
| "//crypto", |
| "//dart/runtime:libdart", |
| "//dart/runtime/bin:libdart_embedder_noio", |
| "//mojo/public/c/system", |
| "//mojo/public/cpp/system", |
| ] |
| |
| defines = [] |
| if (is_debug) { |
| defines += [ "DEBUG" ] |
| } else { |
| defines += [ "NDEBUG" ] |
| } |
| |
| include_dirs = [ "//dart/runtime" ] |
| } |