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 { |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 'MOJO_COMMON_IMPLEMENTATION', | 50 'MOJO_COMMON_IMPLEMENTATION', |
51 ], | 51 ], |
52 'dependencies': [ | 52 'dependencies': [ |
53 '../base/base.gyp:base', | 53 '../base/base.gyp:base', |
54 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 54 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
55 'mojo_system', | 55 'mojo_system', |
56 ], | 56 ], |
57 'sources': [ | 57 'sources': [ |
58 'common/handle_watcher.cc', | 58 'common/handle_watcher.cc', |
59 'common/handle_watcher.h', | 59 'common/handle_watcher.h', |
| 60 'common/message_pump_mojo.cc', |
| 61 'common/message_pump_mojo.h', |
| 62 'common/message_pump_mojo_handler.h', |
60 'common/scoped_message_pipe.cc', | 63 'common/scoped_message_pipe.cc', |
61 'common/scoped_message_pipe.h', | 64 'common/scoped_message_pipe.h', |
62 ], | 65 ], |
63 'conditions': [ | 66 'conditions': [ |
64 ['OS == "win"', { | 67 ['OS == "win"', { |
65 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 68 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
66 'msvs_disabled_warnings': [ | 69 'msvs_disabled_warnings': [ |
67 4267, | 70 4267, |
68 ], | 71 ], |
69 }], | 72 }], |
70 ], | 73 ], |
71 }, | 74 }, |
72 { | 75 { |
73 'target_name': 'mojo_common_unittests', | 76 'target_name': 'mojo_common_unittests', |
74 'type': 'executable', | 77 'type': 'executable', |
75 'dependencies': [ | 78 'dependencies': [ |
76 '../base/base.gyp:base', | 79 '../base/base.gyp:base', |
| 80 '../base/base.gyp:base_message_loop_tests', |
77 '../base/base.gyp:run_all_unittests', | 81 '../base/base.gyp:run_all_unittests', |
78 '../testing/gtest.gyp:gtest', | 82 '../testing/gtest.gyp:gtest', |
79 'mojo_common_lib', | 83 'mojo_common_lib', |
80 'mojo_system', | 84 'mojo_system', |
81 ], | 85 ], |
82 'sources': [ | 86 'sources': [ |
83 'common/handle_watcher_unittest.cc', | 87 'common/handle_watcher_unittest.cc', |
| 88 'common/message_pump_mojo_unittest.cc', |
84 'common/test/run_all_unittests.cc', | 89 'common/test/run_all_unittests.cc', |
85 ], | 90 ], |
86 'conditions': [ | 91 'conditions': [ |
87 ['OS == "win"', { | 92 ['OS == "win"', { |
88 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 93 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
89 'msvs_disabled_warnings': [ | 94 'msvs_disabled_warnings': [ |
90 4267, | 95 4267, |
91 ], | 96 ], |
92 }], | 97 }], |
93 ], | 98 ], |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 454 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
450 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 455 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
451 'native_lib_target': 'libmojo_shell', | 456 'native_lib_target': 'libmojo_shell', |
452 }, | 457 }, |
453 'includes': [ '../build/java_apk.gypi' ], | 458 'includes': [ '../build/java_apk.gypi' ], |
454 } | 459 } |
455 ], | 460 ], |
456 }], | 461 }], |
457 ], | 462 ], |
458 } | 463 } |
OLD | NEW |