Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Side by Side Diff: mojo/mojo.gyp

Issue 23629032: mojo: MessageBuilder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add support for a string field type. Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1, # Use higher warning level.
8 },
9 'target_defaults': {
10 'defines': ['MOJO_IMPLEMENTATION'],
11 },
12 'targets': [
13 {
14 'target_name': 'mojo',
15 'type': 'none',
16 'dependencies': [
17 'mojo_ipc',
18 ],
19 },
20 {
21 'target_name': 'mojo_ipc',
22 'type': 'static_library',
23 'includes': [
24 'mojo_ipc.gypi',
25 ],
26 },
27 {
28 'target_name': 'mojo_unittests',
29 'type': 'executable',
30 'dependencies': [
31 'mojo_ipc',
32 '../base/base.gyp:run_all_unittests',
33 '../testing/gtest.gyp:gtest',
34 ],
35 'include_dirs': [
36 '..'
37 ],
38 'sources': [
39 'ipc/message/ipc_message_unittest.cc',
40 ],
41 },
42 ],
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698