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

Side by Side Diff: build/common.gypi

Issue 131116: This adds in the GYP files needed for our GYP build. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 6 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
« no previous file with comments | « build/build_nacl.py ('k') | build/nacl.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'includes': [
7 '../../build/common.gypi',
8 ],
9 'variables': {
10 'antlrdir': 'third_party/antlr3',
11 'breakpaddir': 'breakpad/src',
12 'fcolladadir': 'third_party/fcollada/files',
13 'gtestdir': 'testing/gtest/include',
14 'jpegdir': 'third_party/libjpeg',
15 'nacldir': 'third_party/native_client/googleclient',
16 'nixysadir': 'third_party/nixysa/files',
17 'npapidir': 'third_party/npapi/files',
18 'pngdir': 'third_party/libpng',
19 'skiadir': 'third_party/skia/include',
20 'zlibdir': 'third_party/zlib',
21 },
22 'conditions' : [
23 ['OS == "win"',
24 {
25 'variables': {
26 'renderer': 'd3d9',
27 'cgdir': 'third_party/cg/files/win',
28 'LIBRARY_SUFFIX': '.lib',
29 'CONFIGURATION': '$(ConfigurationName)',
30 },
31 'target_defaults': {
32 'defines': [
33 '_CRT_SECURE_NO_WARNINGS',
34 'RENDERER_D3D9',
35 'OS_WIN',
36 'NACL_WINDOWS',
37 ],
38 'msvs_disabled_warnings': [4355],
39 'msvs_settings': {
40 'VCCLCompilerTool': {
41 'AdditionalOptions': '/MP',
42 },
43 },
44 },
45 },
46 ],
47 ['OS == "mac"',
48 {
49 'variables': {
50 'renderer': 'gl',
51 'cgdir': 'third_party/cg/files/mac',
52 'LIBRARY_SUFFIX': '.a',
53 'CONFIGURATION': '$(CONFIGURATION)',
54 },
55 'target_defaults': {
56 'defines': [
57 'RENDERER_GL',
58 'OS_MACOSX',
59 ],
60 },
61 },
62 ],
63 ['OS == "linux"',
64 {
65 'variables': {
66 'renderer': 'gl',
67 'cgdir': 'third_party/cg/files/linux',
68 'LIBRARY_SUFFIX': '.a',
69 'CONFIGURATION': '$(CONFIGURATION)',
70 },
71 'target_defaults': {
72 'defines': [
73 'RENDERER_GL',
74 'OS_LINUX',
75 ],
76 },
77 },
78 ],
79 ],
80 }
OLDNEW
« no previous file with comments | « build/build_nacl.py ('k') | build/nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698