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

Side by Side Diff: chrome/chrome.gyp

Issue 10702083: Add ContentViewDelegate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: it builds (but other code in chrome/ doesn't...) Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 1042 matching lines...) Expand 10 before | Expand all | Expand 10 after
1053 'safe_browsing_proto', 1053 'safe_browsing_proto',
1054 ], 1054 ],
1055 'sources': [ 1055 'sources': [
1056 'browser/safe_browsing/signature_util.h', 1056 'browser/safe_browsing/signature_util.h',
1057 'browser/safe_browsing/signature_util_win.cc', 1057 'browser/safe_browsing/signature_util_win.cc',
1058 'tools/safe_browsing/sb_sigutil.cc', 1058 'tools/safe_browsing/sb_sigutil.cc',
1059 ], 1059 ],
1060 }, 1060 },
1061 ]}, # 'targets' 1061 ]}, # 'targets'
1062 ], # OS=="win" 1062 ], # OS=="win"
1063 ['OS=="android"', {
1064 'targets': [
1065 {
1066 'target_name': 'chrome_java',
1067 'type': 'none',
1068 'dependencies': [
1069 '../base/base.gyp:base_java',
1070 '../content/content.gyp:content_java',
1071 ],
1072 'variables': {
1073 'package_name': 'chrome',
1074 'java_in_dir': '../chrome/android/java',
1075 },
1076 'includes': [
1077 '../build/java.gypi'
1078 ],
1079 },
1080 {
1081 'target_name': 'chrome_jni_headers',
1082 'type': 'none',
1083 'includes': [ 'chrome_jni.gypi' ],
1084 },
1085 ]},
1086 ], # OS=="android"
1063 ], # 'conditions' 1087 ], # 'conditions'
1064 } 1088 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698