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

Side by Side Diff: build/ios/coverage.gypi

Issue 2101243005: Add a snapshot of flutter/engine/src/build to our sdk (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: add README.dart Created 4 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 | « build/ios/clean_env.py ('k') | build/ios/grit_whitelist.txt » ('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 2014 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 'variables': {
7 'enable_coverage%': 0,
8 },
9 'conditions': [
10 ['enable_coverage', {
11 'target_defaults': {
12 'defines': [
13 'ENABLE_TEST_CODE_COVERAGE=1'
14 ],
15 'link_settings': {
16 'xcode_settings': {
17 'OTHER_LDFLAGS': [
18 '-fprofile-arcs',
19 ],
20 },
21 },
22 'xcode_settings': {
23 'OTHER_CFLAGS': [
24 '-fprofile-arcs',
25 '-ftest-coverage',
26 ],
27 },
28 },
29 }],
30 ],
31 }
32
OLDNEW
« no previous file with comments | « build/ios/clean_env.py ('k') | build/ios/grit_whitelist.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698