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

Side by Side Diff: dbus/dbus.gyp

Issue 7492029: Implement classes used for manipulating D-Bus messages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix all.gyp Created 9 years, 4 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
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': 'dbus', 11 'target_name': 'dbus',
12 'type': 'static_library', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../build/linux/system.gyp:dbus', 15 '../build/linux/system.gyp:dbus',
16 ], 16 ],
17 'sources': [ 17 'sources': [
18 'message.cc',
19 'message.h',
20 ],
21 },
22 {
23 'target_name': 'dbus_unittests',
24 'type': 'executable',
25 'dependencies': [
26 'dbus',
27 '../base/base.gyp:test_support_base',
28 '../testing/gtest.gyp:gtest',
29 '../build/linux/system.gyp:dbus',
30 ],
31 'sources': [
32 '../base/test/run_all_unittests.cc',
33 'message_unittest.cc',
34 ],
35 'include_dirs': [
36 '..',
18 ], 37 ],
19 }, 38 },
20 ], 39 ],
21 } 40 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | dbus/message.h » ('j') | dbus/message_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698