blob: 792261efcd01f1b44bdd4935585147b1b7046955 [file] [log] [blame]
# Copyright 2016 The Cobalt Authors. 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.
{
'targets': [
{
'target_name': 'engine',
'type': 'static_library',
'sources': [
'callback_function_conversion.h',
'conversion_helpers.cc',
'conversion_helpers.h',
'convert_callback_return_value.h',
'interface_data.h',
'mozjs_array_buffer.cc',
'mozjs_array_buffer.h',
'mozjs_array_buffer_view.cc',
'mozjs_array_buffer_view.h',
'mozjs_callback_function.h',
'mozjs_callback_interface.cc',
'mozjs_callback_interface.h',
'mozjs_callback_interface_holder.h',
'mozjs_data_view.cc',
'mozjs_data_view.h',
'mozjs_engine.cc',
'mozjs_engine.h',
'mozjs_exception_state.cc',
'mozjs_exception_state.h',
'mozjs_global_environment.cc',
'mozjs_global_environment.h',
'mozjs_property_enumerator.cc',
'mozjs_property_enumerator.h',
'mozjs_script_value_factory.cc',
'mozjs_script_value_factory.h',
'mozjs_source_code.cc',
'mozjs_source_code.h',
'mozjs_tracer.cc',
'mozjs_tracer.h',
'mozjs_typed_arrays.cc',
'mozjs_typed_arrays.h',
'mozjs_user_object_holder.h',
'mozjs_value_handle.cc',
'mozjs_value_handle.h',
'mozjs_wrapper_handle.h',
'native_promise.h',
'promise_wrapper.cc',
'promise_wrapper.h',
'proxy_handler.cc',
'proxy_handler.h',
'referenced_object_map.cc',
'referenced_object_map.h',
'type_traits.h',
'union_type_conversion_forward.h',
'union_type_conversion_impl.h',
'util/algorithm_helpers.cc',
'util/algorithm_helpers.h',
'util/exception_helpers.cc',
'util/exception_helpers.h',
'util/stack_trace_helpers.cc',
'util/stack_trace_helpers.h',
'weak_heap_object.cc',
'weak_heap_object.h',
'weak_heap_object_manager.cc',
'weak_heap_object_manager.h',
'wrapper_factory.cc',
'wrapper_factory.h',
'wrapper_private.cc',
'wrapper_private.h',
'<(DEPTH)/cobalt/script/shared/stub_script_debugger.cc',
],
'dependencies': [
'<(DEPTH)/cobalt/configuration/configuration.gyp:configuration',
'<(DEPTH)/cobalt/script/script.gyp:script',
'<(DEPTH)/third_party/mozjs-45/mozjs-45.gyp:mozjs-45_lib',
'embed_mozjs_resources_as_header_files',
],
'defines': [ 'ENGINE_SUPPORTS_INT64', ],
'all_dependent_settings': {
'defines': [
# SpiderMonkey bindings implements indexed deleters.
'ENGINE_SUPPORTS_INDEXED_DELETERS',
'ENGINE_SUPPORTS_INT64',
# TODO: Remove this when exact rooting and generational GC is enabled.
'ENGINE_USES_CONSERVATIVE_ROOTING',
],
},
},
{
# Standalone executable for JS engine
'target_name': 'mozjs-45',
'type': '<(final_executable_type)',
'sources': [
'mozjs.cc',
],
'dependencies': [
':engine',
'<(DEPTH)/cobalt/base/base.gyp:base',
'<(DEPTH)/cobalt/script/script.gyp:standalone_javascript_runner',
'<(DEPTH)/third_party/mozjs-45/mozjs-45.gyp:mozjs-45_lib',
],
},
{
# This target takes specified files and embeds them as header files for
# inclusion into the binary.
'target_name': 'embed_mozjs_resources_as_header_files',
'type': 'none',
# Because we generate a header, we must set the hard_dependency flag.
'hard_dependency': 1,
'variables': {
'script_path': '<(DEPTH)/cobalt/build/generate_data_header.py',
'output_path': '<(SHARED_INTERMEDIATE_DIR)/cobalt/script/mozjs-45/embedded_resources.h',
},
'sources': [
'<(DEPTH)/cobalt/fetch/embedded_scripts/fetch.js',
'<(DEPTH)/cobalt/streams/embedded_scripts/byte_length_queuing_strategy.js',
'<(DEPTH)/cobalt/streams/embedded_scripts/count_queuing_strategy.js',
'<(DEPTH)/cobalt/streams/embedded_scripts/readable_stream.js',
'<(DEPTH)/third_party/promise-polyfill/promise.min.js',
],
'actions': [
{
'action_name': 'embed_mozjs_resources_as_header_files',
'inputs': [
'<(script_path)',
'<@(_sources)',
],
'outputs': [
'<(output_path)',
],
'action': ['python2', '<(script_path)', 'MozjsEmbeddedResources', '<(output_path)', '<@(_sources)' ],
'message': 'Embedding mozjs resources in into header file, "<(output_path)".',
},
],
'direct_dependent_settings': {
'include_dirs': [
'<(SHARED_INTERMEDIATE_DIR)',
],
},
},
],
}