| 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 component("system") { | 5 component("system") { |
| 6 output_name = "mojo_public_system" | 6 output_name = "mojo_public_system" |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "buffer.h", | 9 "buffer.h", |
| 10 "core.h", | 10 "core.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 # mojo_native_application template in //mojo/public/mojo_application.gni. | 28 # mojo_native_application template in //mojo/public/mojo_application.gni. |
| 29 source_set("set_thunks_for_app") { | 29 source_set("set_thunks_for_app") { |
| 30 sources = [ | 30 sources = [ |
| 31 "set_thunks_for_app.cc", | 31 "set_thunks_for_app.cc", |
| 32 ] | 32 ] |
| 33 | 33 |
| 34 public_deps = [ | 34 public_deps = [ |
| 35 ":system", | 35 ":system", |
| 36 ] | 36 ] |
| 37 } | 37 } |
| 38 | |
| 39 # TODO(rockot): Delete these deprecated aliases. | |
| 40 | |
| 41 group("for_shared_library") { | |
| 42 public_deps = [ | |
| 43 ":system", | |
| 44 ] | |
| 45 } | |
| 46 | |
| 47 group("for_component") { | |
| 48 public_deps = [ | |
| 49 ":system", | |
| 50 ] | |
| 51 } | |
| OLD | NEW |