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

Side by Side Diff: ios/chrome/ios_chrome.gyp

Issue 1110133002: [iOS] Upstream code in //ios/chrome/app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 2014 The Chromium Authors. All rights reserved. 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 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'ios_chrome_app', 11 'target_name': 'ios_chrome_app',
12 'type': 'static_library', 12 'type': 'static_library',
13 'include_dirs': [ 13 'include_dirs': [
14 '../..', 14 '../..',
15 ], 15 ],
16 'dependencies': [ 16 'dependencies': [
17 '../../base/base.gyp:base',
17 'ios_chrome_browser', 18 'ios_chrome_browser',
18 ], 19 ],
19 'link_settings': { 20 'link_settings': {
20 'libraries': [ 21 'libraries': [
21 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 22 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
22 ], 23 ],
23 }, 24 },
24 'sources': [ 25 'sources': [
26 'app/UIApplication+ExitsOnSuspend.h',
27 'app/UIApplication+ExitsOnSuspend.mm',
28 'app/deferred_initialization_runner.h',
29 'app/deferred_initialization_runner.mm',
25 'app/safe_mode_crashing_modules_config.h', 30 'app/safe_mode_crashing_modules_config.h',
26 'app/safe_mode_crashing_modules_config.mm', 31 'app/safe_mode_crashing_modules_config.mm',
32 'app/safe_mode_util.cc',
27 'app/safe_mode_util.h', 33 'app/safe_mode_util.h',
28 'app/safe_mode_util.cc',
29 ], 34 ],
30 }, 35 },
31 { 36 {
32 'target_name': 'ios_chrome_browser', 37 'target_name': 'ios_chrome_browser',
33 'type': 'static_library', 38 'type': 'static_library',
34 'include_dirs': [ 39 'include_dirs': [
35 '../..', 40 '../..',
36 ], 41 ],
37 'dependencies': [ 42 'dependencies': [
38 '../../base/base.gyp:base', 43 '../../base/base.gyp:base',
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 '../../ios/web/js_compile.gypi', 284 '../../ios/web/js_compile.gypi',
280 ], 285 ],
281 'link_settings': { 286 'link_settings': {
282 'mac_bundle_resources': [ 287 'mac_bundle_resources': [
283 '<(SHARED_INTERMEDIATE_DIR)/find_in_page.js', 288 '<(SHARED_INTERMEDIATE_DIR)/find_in_page.js',
284 ], 289 ],
285 }, 290 },
286 }, 291 },
287 ], 292 ],
288 } 293 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698