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

Side by Side Diff: gyp/lua.gyp

Issue 152513007: Build Skia for a bare-bones embedded Linux system. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: comment Created 6 years, 10 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 # 1 #
2 # Copyright 2013 Google Inc. 2 # Copyright 2013 Google Inc.
3 # 3 #
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 # 6 #
7 7
8 { 8 {
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 '../third_party/lua/src/linit.c', 49 '../third_party/lua/src/linit.c',
50 ], 50 ],
51 'include_dirs': [ 51 'include_dirs': [
52 '../third_party/lua/src/', 52 '../third_party/lua/src/',
53 ], 53 ],
54 'all_dependent_settings': { 54 'all_dependent_settings': {
55 'include_dirs': [ 55 'include_dirs': [
56 '../third_party/lua/src/', 56 '../third_party/lua/src/',
57 ], 57 ],
58 }, 58 },
59 'defines': [ 59 'conditions': [
60 "getlocaledecpoint()='.'" 60 ['skia_os == "win"',
61 {
62 'defines': [
63 "getlocaledecpoint()='.'",
64 ],
65 }, { # 'skia_os != "win"'
66 'defines': [
67 "getlocaledecpoint()='.'",
scroggo 2014/02/18 21:46:24 Since this is common to both, what if we instead h
hal.canary 2014/02/19 15:21:03 Done.
68 'LUA_USE_POSIX', # Fix warning re dangerous tmpnam.
69 ],
70 }
71 ],
61 ], 72 ],
62 }, 73 },
63 ], 74 ],
64 } 75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698