OLD | NEW |
---|---|
1 #!/bin/bash | |
2 # | |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 3 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 5 # found in the LICENSE file. |
4 | 6 # |
5 source_set("metro_utils") { | 7 # Profile android browsers startup. |
6 deps = [ | 8 exec $(dirname $0)/../../tools/profile_chrome_startup.py $@ |
pasko
2015/01/27 17:00:24
to properly handle spaces in directory names and a
Benoit L
2015/01/27 18:41:41
Done.
| |
7 "//base", | |
8 "//chrome/installer/util", | |
9 ] | |
10 sources = [ | |
11 "metro_chrome_win.cc", | |
12 "metro_chrome_win.h", | |
13 ] | |
14 } | |
OLD | NEW |