OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 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 'includes': [ |
| 7 '../remoting/remoting_webapp_files.gypi', |
| 8 '../remoting/app_remoting_webapp_files.gypi', |
| 9 ], |
| 10 'targets': [ |
| 11 { |
| 12 'target_name': 'verify_main.html', |
| 13 'variables': { |
| 14 'source_files': [ |
| 15 '<@(ar_main_js_files)', |
| 16 '<@(remoting_webapp_js_proto_files)', |
| 17 ], |
| 18 'out_file': '<(PRODUCT_DIR)/>(_target_name)_main_jscompile.stamp', |
| 19 }, |
| 20 'includes': ['compile_js.gypi'], |
| 21 }, |
| 22 { |
| 23 'target_name': 'verify_background.js', |
| 24 'variables': { |
| 25 'source_files': [ |
| 26 '<@(ar_background_js_files)', |
| 27 '<@(remoting_webapp_js_proto_files)', |
| 28 ], |
| 29 'out_file': '<(PRODUCT_DIR)/>(_target_name)_background_jscompile.stamp', |
| 30 }, |
| 31 'includes': ['compile_js.gypi'], |
| 32 }, |
| 33 { |
| 34 'target_name': 'verify_feedback_consent.html', |
| 35 'variables': { |
| 36 'source_files': [ |
| 37 '<@(ar_feedback_consent_html_all_js_files)', |
| 38 '<@(remoting_webapp_js_proto_files)', |
| 39 ], |
| 40 'out_file': '<(PRODUCT_DIR)/>(_target_name)_feedback_consent_jscompile.s
tamp', |
| 41 }, |
| 42 'includes': ['compile_js.gypi'], |
| 43 }, |
| 44 ], # targets |
| 45 } |
OLD | NEW |