Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
angle
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
angle
Commits
ce1d3c48
Commit
ce1d3c48
authored
Oct 08, 2013
by
Geoff Lang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added flags to disable or enable generation of samples and test projects.
parent
0049e43d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
all.gyp
build/all.gyp
+12
-2
common.gypi
build/common.gypi
+2
-0
No files found.
build/all.gyp
View file @
ce1d3c48
...
@@ -8,9 +8,19 @@
...
@@ -8,9 +8,19 @@
'target_name': 'all',
'target_name': 'all',
'type': 'none',
'type': 'none',
'dependencies': [
'dependencies': [
'../samples/samples.gyp:*',
'../src/angle.gyp:*',
'../src/angle.gyp:*',
'../tests/tests.gyp:*',
],
'conditions': [
['angle_build_samples==1', {
'dependencies': [
'../samples/samples.gyp:*',
],
}],
['angle_build_tests==1', {
'dependencies': [
'../tests/tests.gyp:*',
],
}],
],
],
},
},
],
],
...
...
build/common.gypi
View file @
ce1d3c48
...
@@ -5,6 +5,8 @@
...
@@ -5,6 +5,8 @@
{
{
'variables': {
'variables': {
'component%': 'static_library',
'component%': 'static_library',
'angle_build_tests%': '1',
'angle_build_samples%': '1',
# angle_code is set to 1 for the core ANGLE targets defined in src/build_angle.gyp.
# angle_code is set to 1 for the core ANGLE targets defined in src/build_angle.gyp.
# angle_code is set to 0 for test code, sample code, and third party code.
# angle_code is set to 0 for test code, sample code, and third party code.
# When angle_code is 1, we build with additional warning flags on Mac and Linux.
# When angle_code is 1, we build with additional warning flags on Mac and Linux.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment