Commit 88bf4dda authored by fukino's avatar fukino Committed by Commit bot

Add compiled_resources.gyp for file_manager/*.

As a start, I added compiled_resources.gyp for each components in file_manager.

BUG=406995
TEST=GYP_GENERATORS=ninja tools/gyp/gyp --depth . ui/file_manager/file_manager/foreground/js/compiled_resources.gyp && ninja -C out/Default
GYP_GENERATORS=ninja tools/gyp/gyp --depth . ui/file_manager/file_manager/background/js/compiled_resources.gyp && ninja -C out/Default
GYP_GENERATORS=ninja tools/gyp/gyp --depth . ui/file_manager/gallery/js/compiled_resources.gyp && ninja -C out/Default
GYP_GENERATORS=ninja tools/gyp/gyp --depth . ui/file_manager/video_player/js/compiled_resources.gyp && ninja -C out/Default
GYP_GENERATORS=ninja tools/gyp/gyp --depth . ui/file_manager/image_loader/compiled_resources.gyp && ninja -C out/Default

Review URL: https://codereview.chromium.org/619523003

Cr-Commit-Position: refs/heads/master@{#297390}
parent c34fc0b1
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
'target_name': 'background',
'variables': {
'depends': [
'../../common/js/error_util.js',
'../../../../webui/resources/js/load_time_data.js',
'../../../../webui/resources/js/cr.js',
'../../../../webui/resources/js/cr/event_target.js',
'../../../../webui/resources/js/cr/ui/array_data_model.js',
'../../common/js/async_util.js',
'../../common/js/progress_center_common.js',
'../../common/js/util.js',
'../../common/js/volume_manager_common.js',
'device_handler.js',
'drive_sync_handler.js',
'file_operation_handler.js',
'file_operation_manager.js',
'progress_center.js',
'test_util.js',
'volume_manager.js',
'../../../../webui/resources/js/cr/ui/dialogs.js',
],
'externs': ['<(CLOSURE_DIR)/externs/chrome_send_externs.js'],
},
'includes': [
'../../../../../third_party/closure_compiler/compile_js.gypi'
],
}
],
}
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
'target_name': 'background',
'variables': {
'depends': [
'../../../webui/resources/js/cr.js',
'../../../webui/resources/js/cr/event_target.js',
'../../../webui/resources/js/cr/ui/array_data_model.js',
'../../../webui/resources/js/load_time_data.js',
'../../file_manager/common/js/util.js',
'../../file_manager/common/js/async_util.js',
'../../file_manager/common/js/volume_manager_common.js',
'../../file_manager/background/js/volume_manager.js',
'../../file_manager/common/js/error_util.js',
'../../file_manager/foreground/js/file_type.js'
],
'externs': ['<(CLOSURE_DIR)/externs/chrome_send_externs.js'],
},
'includes': [
'../../../../third_party/closure_compiler/compile_js.gypi'
],
},
{
'target_name': 'gallery_scripts',
'variables': {
'depends': [
],
'externs': ['<(CLOSURE_DIR)/externs/chrome_send_externs.js'],
},
'includes': [
'../../../../third_party/closure_compiler/compile_js.gypi'
],
}
],
}
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
'target_name': 'background',
'variables': {
'depends': [
'image_loader.js',
'cache.js',
'worker.js',
'request.js',
],
'externs': ['<(CLOSURE_DIR)/externs/chrome_send_externs.js'],
},
'includes': [
'../../../third_party/closure_compiler/compile_js.gypi'
],
}
],
}
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
'target_name': 'background',
'variables': {
'depends': [
'../../../webui/resources/js/cr.js',
'../../../webui/resources/js/cr/event_target.js',
'../../../webui/resources/js/cr/ui/array_data_model.js',
'../../../webui/resources/js/load_time_data.js',
'../../file_manager/common/js/util.js',
'../../file_manager/common/js/async_util.js',
'../../file_manager/common/js/volume_manager_common.js',
'../../file_manager/background/js/volume_manager.js',
'../../file_manager/foreground/js/file_type.js',
'error_util.js',
'test_util.js',
],
'externs': ['<(CLOSURE_DIR)/externs/chrome_send_externs.js'],
},
'includes': [
'../../../../third_party/closure_compiler/compile_js.gypi'
],
},
{
'target_name': 'video_player_scripts',
'variables': {
'depends': [
],
'externs': ['<(CLOSURE_DIR)/externs/chrome_send_externs.js'],
},
'includes': [
'../../../../third_party/closure_compiler/compile_js.gypi'
],
}
],
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment