| 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 assert(!defined(is_nacl) || !is_nacl) | |
| 6 | |
| 7 import("../../mojo_sdk.gni") | 5 import("../../mojo_sdk.gni") |
| 8 | 6 |
| 9 mojo_sdk_source_set("system") { | 7 mojo_sdk_source_set("system") { |
| 10 sources = [ | 8 sources = [ |
| 11 "system_thunks.c", | 9 "system_thunks.c", |
| 12 "system_thunks.h", | 10 "system_thunks.h", |
| 13 ] | 11 ] |
| 14 defines = [ "MOJO_SYSTEM_IMPLEMENTATION" ] | 12 defines = [ "MOJO_SYSTEM_IMPLEMENTATION" ] |
| 15 mojo_sdk_deps = [ "mojo/public/c/system" ] | 13 mojo_sdk_deps = [ "mojo/public/c/system" ] |
| 16 | 14 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 } | 120 } |
| 123 | 121 |
| 124 mojo_sdk_source_set("mgl_onscreen_thunks") { | 122 mojo_sdk_source_set("mgl_onscreen_thunks") { |
| 125 sources = [ | 123 sources = [ |
| 126 "mgl_onscreen_thunks.c", | 124 "mgl_onscreen_thunks.c", |
| 127 "mgl_onscreen_thunks.h", | 125 "mgl_onscreen_thunks.h", |
| 128 ] | 126 ] |
| 129 | 127 |
| 130 mojo_sdk_deps = [ "mojo/public/c/gpu:MGL_onscreen" ] | 128 mojo_sdk_deps = [ "mojo/public/c/gpu:MGL_onscreen" ] |
| 131 } | 129 } |
| OLD | NEW |