Return outdated thumbnail while loading a new thumbnail.
[chromium-blink-merge.git] / remoting / remoting_key_tester.gypi
blobd85a32134ebecba1c876cf7db73e4b6fcbe45c43
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.
6   'includes': [
7     '../build/common_untrusted.gypi',
8   ],
10   'variables': {
11     'remoting_key_tester_js_files': [
12         'tools/javascript_key_tester/background.js',
13         'tools/javascript_key_tester/chord_tracker.js',
14         'tools/javascript_key_tester/event_listeners.js',
15         'tools/javascript_key_tester/main.js',
16      ],
17   },
19   'conditions': [
20     ['disable_nacl==0 and disable_nacl_untrusted==0', {
21       'targets': [
22         {
23           'target_name': 'remoting_key_tester',
24           'type': 'none',
25           'dependencies': [
26             'remoting_key_tester_pexe',
27             'remoting_key_tester_jscompile',
28           ],
29           'copies': [
30             {
31               'destination': '<(PRODUCT_DIR)/remoting/key_tester',
32               'files': [
33                 '<@(remoting_key_tester_js_files)',
34                 'tools/javascript_key_tester/main.css',
35                 'tools/javascript_key_tester/main.html',
36                 'tools/javascript_key_tester/manifest.json',
37                 'tools/javascript_key_tester/icon_128.png',
38                 'tools/javascript_key_tester/pnacl/remoting_key_tester.nmf',
39                 '<(PRODUCT_DIR)/remoting_key_tester_newlib.pexe',
40               ],
41             }
42           ],
43         },  # end of target 'remoting_key_tester'
45         {
46           'target_name': 'remoting_key_tester_jscompile',
47           'type': 'none',
48           'conditions': [
49             ['run_jscompile != 0', {
50               'variables': {
51                 'success_stamp': '<(PRODUCT_DIR)/<(_target_name).stamp',
52               },
53               'actions': [
54                 {
55                   'action_name': 'jscompile remoting_key_tester',
56                   'inputs': [
57                     '<@(remoting_key_tester_js_files)',
58                     'webapp/js_proto/chrome_proto.js'
59                   ],
60                   'outputs': [
61                     '<(success_stamp)',
62                   ],
63                   'action': [
64                     'python', '../third_party/closure_compiler/checker.py',
65                     '--strict',
66                     '--no-single-file',
67                     '--success-stamp', '<(success_stamp)',
68                     '<@(remoting_key_tester_js_files)',
69                     'webapp/js_proto/chrome_proto.js'
70                   ],
71                 },
72               ],  # actions
73             }],
74           ],
75         },  # end of target 'remoting_key_tester_jscompile'
77         {
78           'target_name': 'remoting_key_tester_pexe',
79           'type': 'none',
80           'sources': [
81             'tools/javascript_key_tester/pnacl/remoting_key_tester.cc',
82           ],
83           'variables': {
84             'nexe_target': 'remoting_key_tester',
85             'build_glibc': 0,
86             'build_newlib': 0,
87             'build_pnacl_newlib': 1,
88             'extra_deps_pnacl_newlib': [
89               '>(tc_lib_dir_pnacl_newlib)/libppapi.a',
90               '>(tc_lib_dir_pnacl_newlib)/libppapi_cpp.a',
91             ],
92           },
93           'link_flags': [
94             '-lppapi_stub',
95             '-lppapi_cpp',
96           ],
97           'dependencies': [
98             # TODO(mseaborn): Remove need for this (https://crbug.com/456902).
99             '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
100           ],
101         },  # end of target 'remoting_key_tester_pexe'
102       ],
103     }]
104   ],