| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'mojo', | 11 'target_name': 'mojo', |
| 12 'type': 'none', | 12 'type': 'none', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 'mojo_public_test_support', | 14 'mojo_public_test_support', |
| 15 'mojo_public_unittests', | 15 'mojo_public_unittests', |
| 16 'mojo_public_perftests', | 16 'mojo_public_perftests', |
| 17 'mojo_system', | 17 'mojo_system', |
| 18 'mojo_system_unittests', | 18 'mojo_system_unittests', |
| 19 ], | 19 ], |
| 20 }, | 20 }, |
| 21 { | 21 { |
| 22 'target_name': 'mojo_public_test_support', | 22 'target_name': 'mojo_public_test_support', |
| 23 'type': 'static_library', | 23 'type': 'static_library', |
| 24 'dependencies': [ | 24 'dependencies': [ |
| 25 '../base/base.gyp:base', | 25 '../base/base.gyp:base', |
| 26 '../testing/gtest.gyp:gtest', | 26 '../testing/gtest.gyp:gtest', |
| 27 'mojo_system', | 27 'mojo_system', |
| 28 ], | 28 ], |
| 29 'sources': [ | 29 'sources': [ |
| 30 'public/tests/simple_bindings_support.cc', |
| 31 'public/tests/simple_bindings_support.h', |
| 30 'public/tests/test_support.cc', | 32 'public/tests/test_support.cc', |
| 31 'public/tests/test_support.h', | 33 'public/tests/test_support.h', |
| 32 ], | 34 ], |
| 33 }, | 35 }, |
| 34 { | 36 { |
| 35 'target_name': 'mojo_public_unittests', | 37 'target_name': 'mojo_public_unittests', |
| 36 'type': 'executable', | 38 'type': 'executable', |
| 37 'dependencies': [ | 39 'dependencies': [ |
| 38 '../base/base.gyp:run_all_unittests', | 40 '../base/base.gyp:run_all_unittests', |
| 39 '../testing/gtest.gyp:gtest', | 41 '../testing/gtest.gyp:gtest', |
| 42 'mojo_bindings', |
| 40 'mojo_public_test_support', | 43 'mojo_public_test_support', |
| 41 'mojo_system', | 44 'mojo_system', |
| 42 ], | 45 ], |
| 43 'sources': [ | 46 'sources': [ |
| 47 'public/tests/bindings_connector_unittest.cc', |
| 44 'public/tests/system_core_unittest.cc', | 48 'public/tests/system_core_unittest.cc', |
| 45 ], | 49 ], |
| 46 }, | 50 }, |
| 47 { | 51 { |
| 48 'target_name': 'mojo_public_perftests', | 52 'target_name': 'mojo_public_perftests', |
| 49 'type': 'executable', | 53 'type': 'executable', |
| 50 'dependencies': [ | 54 'dependencies': [ |
| 51 '../base/base.gyp:base', | 55 '../base/base.gyp:base', |
| 52 '../base/base.gyp:test_support_perf', | 56 '../base/base.gyp:test_support_perf', |
| 53 '../testing/gtest.gyp:gtest', | 57 '../testing/gtest.gyp:gtest', |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 'target_name': 'mojo_bindings', | 245 'target_name': 'mojo_bindings', |
| 242 'type': 'static_library', | 246 'type': 'static_library', |
| 243 'include_dirs': [ | 247 'include_dirs': [ |
| 244 '..' | 248 '..' |
| 245 ], | 249 ], |
| 246 'sources': [ | 250 'sources': [ |
| 247 'public/bindings/lib/bindings.h', | 251 'public/bindings/lib/bindings.h', |
| 248 'public/bindings/lib/bindings_internal.h', | 252 'public/bindings/lib/bindings_internal.h', |
| 249 'public/bindings/lib/bindings_serialization.cc', | 253 'public/bindings/lib/bindings_serialization.cc', |
| 250 'public/bindings/lib/bindings_serialization.h', | 254 'public/bindings/lib/bindings_serialization.h', |
| 255 'public/bindings/lib/bindings_support.cc', |
| 256 'public/bindings/lib/bindings_support.h', |
| 251 'public/bindings/lib/buffer.cc', | 257 'public/bindings/lib/buffer.cc', |
| 252 'public/bindings/lib/buffer.h', | 258 'public/bindings/lib/buffer.h', |
| 259 'public/bindings/lib/connector.cc', |
| 260 'public/bindings/lib/connector.h', |
| 253 'public/bindings/lib/message.cc', | 261 'public/bindings/lib/message.cc', |
| 254 'public/bindings/lib/message.h', | 262 'public/bindings/lib/message.h', |
| 255 'public/bindings/lib/message_builder.cc', | 263 'public/bindings/lib/message_builder.cc', |
| 256 'public/bindings/lib/message_builder.h', | 264 'public/bindings/lib/message_builder.h', |
| 265 'public/bindings/lib/message_queue.cc', |
| 266 'public/bindings/lib/message_queue.h', |
| 257 ], | 267 ], |
| 258 }, | 268 }, |
| 259 { | 269 { |
| 260 'target_name': 'mojo_bindings_test', | 270 'target_name': 'mojo_bindings_test', |
| 261 'type': 'executable', | 271 'type': 'executable', |
| 262 'include_dirs': [ | 272 'include_dirs': [ |
| 263 '..' | 273 '..' |
| 264 ], | 274 ], |
| 265 'dependencies': [ | 275 'dependencies': [ |
| 266 'mojo_bindings', | 276 'mojo_bindings', |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 403 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 394 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 404 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 395 'native_lib_target': 'libmojo_shell', | 405 'native_lib_target': 'libmojo_shell', |
| 396 }, | 406 }, |
| 397 'includes': [ '../build/java_apk.gypi' ], | 407 'includes': [ '../build/java_apk.gypi' ], |
| 398 } | 408 } |
| 399 ], | 409 ], |
| 400 }], | 410 }], |
| 401 ], | 411 ], |
| 402 } | 412 } |
| OLD | NEW |