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

Side by Side Diff: third_party/cld/cld.gyp

Issue 206006: Force inclusion of build/common.gypi for all chromium gyp files. (Closed)
Patch Set: 2nd round of feedback Created 11 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
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': [
7 '../../build/common.gypi',
8 ],
9 'conditions': [ 6 'conditions': [
10 ['OS=="win"', { 7 ['OS=="win"', {
11 'targets': [ 8 'targets': [
12 { 9 {
13 'target_name': 'cld', 10 'target_name': 'cld',
14 'type': '<(library)', 11 'type': '<(library)',
15 'dependencies': [ 12 'dependencies': [
16 '../../base/base.gyp:base', 13 '../../base/base.gyp:base',
17 ], 14 ],
18 'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800], 15 'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800],
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 'defines': [ 92 'defines': [
96 'CLD_WINDOWS', 93 'CLD_WINDOWS',
97 'COMPILER_MSVC', 94 'COMPILER_MSVC',
98 ], 95 ],
99 }, 96 },
100 },], 97 },],
101 }, 98 },
102 ], 99 ],
103 ], 100 ],
104 } 101 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698