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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 'MOJO_COMMON_IMPLEMENTATION', | 62 'MOJO_COMMON_IMPLEMENTATION', |
63 ], | 63 ], |
64 'dependencies': [ | 64 'dependencies': [ |
65 '../base/base.gyp:base', | 65 '../base/base.gyp:base', |
66 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 66 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
67 'mojo_system', | 67 'mojo_system', |
68 ], | 68 ], |
69 'sources': [ | 69 'sources': [ |
70 'common/handle_watcher.cc', | 70 'common/handle_watcher.cc', |
71 'common/handle_watcher.h', | 71 'common/handle_watcher.h', |
| 72 'common/message_pump_mojo.cc', |
| 73 'common/message_pump_mojo.h', |
| 74 'common/message_pump_mojo_handler.h', |
72 'common/scoped_message_pipe.cc', | 75 'common/scoped_message_pipe.cc', |
73 'common/scoped_message_pipe.h', | 76 'common/scoped_message_pipe.h', |
74 ], | 77 ], |
75 'conditions': [ | 78 'conditions': [ |
76 ['OS == "win"', { | 79 ['OS == "win"', { |
77 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 80 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
78 'msvs_disabled_warnings': [ | 81 'msvs_disabled_warnings': [ |
79 4267, | 82 4267, |
80 ], | 83 ], |
81 }], | 84 }], |
82 ], | 85 ], |
83 }, | 86 }, |
84 { | 87 { |
85 'target_name': 'mojo_common_unittests', | 88 'target_name': 'mojo_common_unittests', |
86 'type': 'executable', | 89 'type': 'executable', |
87 'dependencies': [ | 90 'dependencies': [ |
88 '../base/base.gyp:base', | 91 '../base/base.gyp:base', |
| 92 '../base/base.gyp:base_message_loop_tests', |
89 '../testing/gtest.gyp:gtest', | 93 '../testing/gtest.gyp:gtest', |
90 'mojo_common_lib', | 94 'mojo_common_lib', |
91 'mojo_run_all_unittests', | 95 'mojo_run_all_unittests', |
92 'mojo_system', | 96 'mojo_system', |
93 ], | 97 ], |
94 'sources': [ | 98 'sources': [ |
95 'common/handle_watcher_unittest.cc', | 99 'common/handle_watcher_unittest.cc', |
| 100 'common/message_pump_mojo_unittest.cc', |
96 ], | 101 ], |
97 'conditions': [ | 102 'conditions': [ |
98 ['OS == "win"', { | 103 ['OS == "win"', { |
99 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 104 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
100 'msvs_disabled_warnings': [ | 105 'msvs_disabled_warnings': [ |
101 4267, | 106 4267, |
102 ], | 107 ], |
103 }], | 108 }], |
104 ], | 109 ], |
105 }, | 110 }, |
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 467 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
463 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 468 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
464 'native_lib_target': 'libmojo_shell', | 469 'native_lib_target': 'libmojo_shell', |
465 }, | 470 }, |
466 'includes': [ '../build/java_apk.gypi' ], | 471 'includes': [ '../build/java_apk.gypi' ], |
467 } | 472 } |
468 ], | 473 ], |
469 }], | 474 }], |
470 ], | 475 ], |
471 } | 476 } |
OLD | NEW |