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

Side by Side Diff: gyp/common_conditions.gypi

Issue 1644043003: SkMojo: test linking Skia against the Mojo SDK (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2016-01-29 (Friday) 12:55:47 EST Created 4 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 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # conditions used in both common.gypi and skia.gyp in chromium 6 # conditions used in both common.gypi and skia.gyp in chromium
7 # 7 #
8 { 8 {
9 'defines': [ 9 'defines': [
10 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', 10 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)',
11 'SK_SUPPORT_GPU=<(skia_gpu)', 11 'SK_SUPPORT_GPU=<(skia_gpu)',
12 'SK_FORCE_DISTANCE_FIELD_TEXT=<(skia_force_distance_field_text)', 12 'SK_FORCE_DISTANCE_FIELD_TEXT=<(skia_force_distance_field_text)',
13 ], 13 ],
14 'conditions' : [ 14 'conditions' : [
15 [ 'skia_mojo_experiment', {'defines': [ 'SK_MOJO_EXPERIMENT'] } ],
mtklein 2016/01/29 18:09:41 Let's drop _experiment and _EXPERIMENT. We know i
hal.canary 2016/01/29 18:44:50 done
15 [ 'skia_codec_decodes_raw', { 16 [ 'skia_codec_decodes_raw', {
16 'defines': [ 17 'defines': [
17 'SK_CODEC_DECODES_RAW', 18 'SK_CODEC_DECODES_RAW',
18 ], 19 ],
19 }], 20 }],
20 ['skia_pic', { 21 ['skia_pic', {
21 'cflags': [ 22 'cflags': [
22 '-fPIC', 23 '-fPIC',
23 ], 24 ],
24 'conditions' : [ 25 'conditions' : [
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 'LD_RUNPATH_SEARCH_PATHS': ['@executable_path/.'], 689 'LD_RUNPATH_SEARCH_PATHS': ['@executable_path/.'],
689 }, 690 },
690 }], 691 }],
691 692
692 ], # end 'conditions' 693 ], # end 'conditions'
693 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details 694 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details
694 'xcode_settings': { 695 'xcode_settings': {
695 'SYMROOT': '<(DEPTH)/xcodebuild', 696 'SYMROOT': '<(DEPTH)/xcodebuild',
696 }, 697 },
697 } 698 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698