blob: 9c1f00bfdd4d5143023134f0724f6350d4470508 [file] [log] [blame]
# Copyright 2015 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
{
'variables': {
'sb_pedantic_warnings': 1,
},
'targets': [
{
'target_name': 'cobalt',
'type': '<(final_executable_type)',
'dependencies': [
'<(DEPTH)/cobalt/browser/browser.gyp:browser',
],
'conditions': [
['cobalt_enable_lib == 1', {
'sources': [
'lib/cobalt.def',
'lib/main.cc',
],
}, {
'sources': [
'main.cc',
],
}],
['cobalt_copy_test_data == 1', {
'dependencies': [
'<(DEPTH)/cobalt/browser/browser.gyp:browser_copy_test_data',
'<(DEPTH)/cobalt/xhr/xhr.gyp:xhr_copy_test_data',
],
}],
['cobalt_copy_debug_console == 1', {
'dependencies': [
'<(DEPTH)/cobalt/browser/browser.gyp:browser_copy_debug_console',
],
}],
],
},
{
'target_name': 'cobalt_deploy',
'type': 'none',
'dependencies': [
'cobalt',
],
'variables': {
'executable_name': 'cobalt',
},
'includes': [ '../../starboard/build/deploy.gypi' ],
},
{
'target_name': 'snapshot_app_stats',
'type': '<(final_executable_type)',
'sources': [
'snapshot_app_stats.cc',
],
'dependencies': [
'cobalt',
'<(DEPTH)/cobalt/browser/browser.gyp:browser',
],
},
{
'target_name': 'snapshot_app_stats_deploy',
'type': 'none',
'dependencies': [
'snapshot_app_stats',
],
'variables': {
'executable_name': 'snapshot_app_stats',
},
'includes': [ '../../starboard/build/deploy.gypi' ],
},
],
'conditions': [
['final_executable_type == "shared_library"', {
'targets': [
{
'target_name': 'cobalt_bin',
'type': 'executable',
'dependencies': [
'cobalt',
],
},
],
}],
],
}