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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //mojo/public/c/system | 8 # GN version: //mojo/public/c/system |
9 'target_name': 'mojo_system', | 9 'target_name': 'mojo_system', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 ], | 254 ], |
255 'export_dependent_settings': [ | 255 'export_dependent_settings': [ |
256 'mojo_application_bindings', | 256 'mojo_application_bindings', |
257 ], | 257 ], |
258 }, | 258 }, |
259 { | 259 { |
260 # GN version: //mojo/public/cpp/application:standalone" | 260 # GN version: //mojo/public/cpp/application:standalone" |
261 'target_name': 'mojo_application_standalone', | 261 'target_name': 'mojo_application_standalone', |
262 'type': 'static_library', | 262 'type': 'static_library', |
263 'sources': [ | 263 'sources': [ |
264 'public/cpp/application/lib/application_impl_standalone.cc', | 264 'public/cpp/application/lib/application_runner.cc', |
| 265 'public/cpp/application/application_runner.h', |
265 ], | 266 ], |
266 'dependencies': [ | 267 'dependencies': [ |
267 'mojo_application_base', | 268 'mojo_application_base', |
| 269 'mojo_environment_standalone', |
268 ], | 270 ], |
269 'export_dependent_settings': [ | 271 'export_dependent_settings': [ |
270 'mojo_application_base', | 272 'mojo_application_base', |
271 ], | 273 ], |
272 }, | 274 }, |
273 ], | 275 ], |
274 'conditions': [ | 276 'conditions': [ |
275 ['OS == "android"', { | 277 ['OS == "android"', { |
276 'targets': [ | 278 'targets': [ |
277 { | 279 { |
(...skipping 14 matching lines...) Expand all Loading... |
292 }, | 294 }, |
293 'dependencies': [ | 295 'dependencies': [ |
294 'mojo_public_java', | 296 'mojo_public_java', |
295 ], | 297 ], |
296 'includes': [ '../build/java.gypi' ], | 298 'includes': [ '../build/java.gypi' ], |
297 }, | 299 }, |
298 ], | 300 ], |
299 }], | 301 }], |
300 ], | 302 ], |
301 } | 303 } |
OLD | NEW |