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

Side by Side Diff: testing/gmock.gyp

Issue 150086: Delete boost. (Closed)
Patch Set: Remove boost gyp files Created 11 years, 5 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
« no previous file with comments | « no previous file | third_party/boost/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 6 'includes': [
7 '../build/common.gypi', 7 '../build/common.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 'gmock/include', 45 'gmock/include',
46 ], 46 ],
47 'direct_dependent_settings': { 47 'direct_dependent_settings': {
48 'include_dirs': [ 48 'include_dirs': [
49 'gmock/include', # So that gmock headers can find themselves. 49 'gmock/include', # So that gmock headers can find themselves.
50 ], 50 ],
51 }, 51 },
52 'export_dependent_settings': [ 52 'export_dependent_settings': [
53 'gtest.gyp:gtest', 53 'gtest.gyp:gtest',
54 ], 54 ],
55 'conditions': [
56 ['OS=="win"', {
57 'dependencies': [
58 '../third_party/boost/boost.gyp:boost_tuple',
59 ],
60 'export_dependent_settings': [
61 '../third_party/boost/boost.gyp:boost_tuple',
62 ]
63 }],
64 ],
65 }, 55 },
66 { 56 {
67 # Note that calling this "gmock_main" confuses the scons build, 57 # Note that calling this "gmock_main" confuses the scons build,
68 # which uses "_main" on scons files to produce special behavior. 58 # which uses "_main" on scons files to produce special behavior.
69 'target_name': 'gmockmain', 59 'target_name': 'gmockmain',
70 'type': '<(library)', 60 'type': '<(library)',
71 'dependencies': [ 61 'dependencies': [
72 'gmock', 62 'gmock',
73 ], 63 ],
74 'sources': [ 64 'sources': [
75 'gmock/src/gmock_main.cc', 65 'gmock/src/gmock_main.cc',
76 ], 66 ],
77 }, 67 },
78 ], 68 ],
79 } 69 }
OLDNEW
« no previous file with comments | « no previous file | third_party/boost/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698