| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//mojo/system.gni") |
| 6 |
| 7 shared_library("mojo_js") { |
| 8 sources = [ |
| 9 "main.cc" |
| 10 ] |
| 11 |
| 12 deps = [ |
| 13 ":js", |
| 14 ] + mojo_system_for_shared_library |
| 15 } |
| 16 |
| 5 # GYP version: part of mojo/mojo_apps.gypi:mojo_js_lib | 17 # GYP version: part of mojo/mojo_apps.gypi:mojo_js_lib |
| 6 source_set("js") { | 18 source_set("js") { |
| 7 deps = [ | 19 deps = [ |
| 8 "//base", | 20 "//base", |
| 9 "//gin", | 21 "//gin", |
| 10 "//mojo/apps/js/bindings", | 22 "//mojo/apps/js/bindings", |
| 11 "//mojo/apps/js/bindings/gl", | 23 "//mojo/apps/js/bindings/gl", |
| 12 "//mojo/bindings/js", | 24 "//mojo/bindings/js", |
| 13 ] | 25 ] |
| 14 sources = [ | 26 sources = [ |
| 15 "mojo_runner_delegate.cc", | 27 "mojo_runner_delegate.cc", |
| 16 "mojo_runner_delegate.h", | 28 "mojo_runner_delegate.h", |
| 17 ] | 29 ] |
| 18 } | 30 } |
| OLD | NEW |