OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
Mark Mentovai
2016/07/11 17:56:16
2016. Make sure all of your new files say 2016.
| |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 executable("downloader") { | |
6 sources = [ | |
7 "DownloadDelegate.m", | |
8 "NetworkCommunication.m", | |
9 "OmahaCommunication.m", | |
10 "OmahaXMLRequest.m", | |
11 "SystemInfo.m", | |
12 "downloader.m", | |
Mark Mentovai
2016/07/11 17:56:16
Downloader.m and Parser.m, capital letters, and re
| |
13 "main.m", | |
14 "parser.m", | |
15 ] | |
16 libs = [ "Foundation.framework" ] | |
17 } | |
OLD | NEW |