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

Side by Side Diff: chrome/browser/resources/md_history/compiled_resources.gyp

Issue 1572383006: MD History: Hook all elements into the page and add tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@patch
Patch Set: Address reviewer comments. Created 4 years, 11 months 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
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Closure compiler definition for MD History. Not tied into the main closure 5 # Closure compiler definition for MD History. Not tied into the main closure
6 # build while we get oriented with the system. 6 # build while we get oriented with the system.
7 # To compile: 7 # To compile:
8 # GYP_GENERATORS=ninja tools/gyp/gyp --depth . -Goutput_dir=out_closure \ 8 # GYP_GENERATORS=ninja tools/gyp/gyp --depth . -Goutput_dir=out_closure \
9 # chrome/browser/resources/md_history/compiled_resources.gyp 9 # chrome/browser/resources/md_history/compiled_resources.gyp
10 # ninja -C out_closure/Default 10 # ninja -C out_closure/Default
11 { 11 {
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'history', 14 'target_name': 'history',
15 15
16 'variables': { 16 'variables': {
17 'depends': [ 17 'depends': [
18 '../../../../ui/webui/resources/js/cr.js', 18 '../../../../ui/webui/resources/js/cr.js',
19 '../../../../ui/webui/resources/js/util.js', 19 '../../../../ui/webui/resources/js/util.js',
20 '../../../../ui/webui/resources/js/cr/ui/position_util.js', 20 '../../../../ui/webui/resources/js/cr/ui/position_util.js',
21 'history_card_manager.js', 21 'history_card_manager.js',
22 'history_card.js', 22 'history_card.js',
23 'history_item.js', 23 'history_item.js',
24 'history_toolbar.js',
25 'history.js',
24 ], 26 ],
25 'externs': [ 27 'externs': [
26 '<(EXTERNS_DIR)/chrome_send.js', 28 '<(EXTERNS_DIR)/chrome_send.js',
27 '../history/externs.js', 29 '../history/externs.js',
28 ], 30 ],
29 }, 31 },
30 32
31 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], 33 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
32 }, 34 },
33 ], 35 ],
34 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698