Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(367)

Side by Side Diff: ios/web/js_compile.gypi

Issue 788253002: Upstream injected JavaScript for the iOS web layer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2014 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 'conditions': [
7 ['compile_javascript==1', {
8 #TODO(ios): Enable javascript compilation.
droger 2014/12/10 18:07:14 I did not upstream that part, because it requires
sdefresne 2014/12/10 18:29:11 Can you create a bug to add this dependency to thi
droger 2014/12/11 09:36:35 Do we really want to create individual bugs for up
9 },
10 { # else
11 'rules': [
12 {
13 'rule_name': 'jscompilation',
14 'extension': 'js',
15 'outputs': [
16 '<(SHARED_INTERMEDIATE_DIR)/<(RULE_INPUT_NAME)',
17 ],
18 'action': [
19 'cp',
20 '<(RULE_INPUT_PATH)',
21 '<@(_outputs)',
22 ],
23 }
24 ]} # rule_name: jscompilation
25 ] # condition: compile_javascript
26 ] # conditions
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698