1 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Use of this source code is governed by a BSD-style license that can be 3 # found in the LICENSE file. 4 5 shared_library("mojo_js") { 6 sources = [ 7 "application_delegate_impl.cc", 8 "js_app.cc", 9 "mojo_module.cc", 10 "main.cc" 11 ] 12 13 deps = [ 14 ":js", 15 "//base", 16 "//base:i18n", 17 "//gin", 18 "//mojo/application", 19 "//mojo/public/c/system:for_shared_library", 20 "//mojo/public/cpp/application", 21 "//mojo/public/cpp/bindings", 22 "//mojo/public/cpp/utility", 23 "//mojo/services/public/interfaces/content_handler", 24 ] 25 } 26 27 # GYP version: part of mojo/mojo_apps.gypi:mojo_js_lib 28 source_set("js") { 29 sources = [ 30 "mojo_runner_delegate.cc", 31 "mojo_runner_delegate.h", 32 ] 33 34 public_deps = [ 35 "//mojo/bindings/js", 36 ] 37 deps = [ 38 "//base", 39 "//gin", 40 "//mojo/apps/js/bindings", 41 "//mojo/apps/js/bindings/gl", 42 "//v8", 43 ] 44 } 45