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

Side by Side Diff: chrome_elf/chrome_elf.gyp

Issue 53793002: Initial implementation of Chrome Early Loading Framework (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move InitChromeElf to after the fast notify Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'includes': [
9 '../build/win_precompile.gypi',
10 '../chrome/version.gypi',
11 ],
8 'targets': [ 12 'targets': [
9 { 13 {
10 'target_name': 'ios_provider_web', 14 'target_name': 'chrome_elf',
11 'type': 'none', 15 'type': 'shared_library',
12 'include_dirs': [ 16 'include_dirs': [
13 '..', 17 '..',
14 ], 18 ],
15 'sources': [ 19 'sources': [
16 'public/provider/web/web_state.h', 20 'chrome_elf.def',
gab 2013/11/11 20:11:38 The next time you upload, consider using "git cl u
17 'public/provider/web/web_state_user_data.h', 21 'chrome_elf_main.cc',
18 ], 22 'chrome_elf_main.h',
19 'dependencies': [
20 'ios_base.gyp:ios_consumer_base',
21 ], 23 ],
22 }, 24 },
23 ], 25 ],
24 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698