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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 10915226: OBSOLETE - Move drive.proto to browser/google_apis directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 3 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
« no previous file with comments | « chrome/browser/ui/webui/feedback_ui.cc ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'browser', 9 'target_name': 'browser',
10 'type': 'static_library', 10 'type': 'static_library',
11 'variables': { 'enable_wexit_time_destructors': 1, }, 11 'variables': { 'enable_wexit_time_destructors': 1, },
12 'dependencies': [ 12 'dependencies': [
13 'app/policy/cloud_policy_codegen.gyp:policy', 13 'app/policy/cloud_policy_codegen.gyp:policy',
14 'autofill_regexes', 14 'autofill_regexes',
15 'browser_extensions', 15 'browser_extensions',
16 'browser_ui', 16 'browser_ui',
17 'browser/performance_monitor/performance_monitor.gyp:performance_monitor ', 17 'browser/performance_monitor/performance_monitor.gyp:performance_monitor ',
18 'cert_logger_proto', 18 'cert_logger_proto',
19 'chrome_resources.gyp:chrome_extra_resources', 19 'chrome_resources.gyp:chrome_extra_resources',
20 'chrome_resources.gyp:chrome_resources', 20 'chrome_resources.gyp:chrome_resources',
21 'chrome_resources.gyp:chrome_strings', 21 'chrome_resources.gyp:chrome_strings',
22 'chrome_resources.gyp:platform_locale_settings', 22 'chrome_resources.gyp:platform_locale_settings',
23 'chrome_resources.gyp:theme_resources', 23 'chrome_resources.gyp:theme_resources',
24 'common', 24 'common',
25 'common/extensions/api/api.gyp:api', 25 'common/extensions/api/api.gyp:api',
26 'common_net', 26 'common_net',
27 'debugger', 27 'debugger',
28 'drive_proto',
28 'in_memory_url_index_cache_proto', 29 'in_memory_url_index_cache_proto',
29 'installer_util', 30 'installer_util',
30 'safe_browsing_proto', 31 'safe_browsing_proto',
31 'safe_browsing_report_proto', 32 'safe_browsing_report_proto',
32 'feedback_proto', 33 'feedback_proto',
33 'variations_seed_proto', 34 'variations_seed_proto',
34 '../build/temp_gyp/googleurl.gyp:googleurl', 35 '../build/temp_gyp/googleurl.gyp:googleurl',
35 '../content/content.gyp:content_browser', 36 '../content/content.gyp:content_browser',
36 '../content/content.gyp:content_common', 37 '../content/content.gyp:content_common',
37 '../crypto/crypto.gyp:crypto', 38 '../crypto/crypto.gyp:crypto',
(...skipping 2704 matching lines...) Expand 10 before | Expand all | Expand 10 after
2742 'sources': [ 2743 'sources': [
2743 'browser/metrics/proto/trials_seed.proto', 2744 'browser/metrics/proto/trials_seed.proto',
2744 'browser/metrics/proto/study.proto', 2745 'browser/metrics/proto/study.proto',
2745 ], 2746 ],
2746 'variables': { 2747 'variables': {
2747 'proto_in_dir': 'browser/metrics/proto', 2748 'proto_in_dir': 'browser/metrics/proto',
2748 'proto_out_dir': 'chrome/browser/metrics/proto', 2749 'proto_out_dir': 'chrome/browser/metrics/proto',
2749 }, 2750 },
2750 'includes': [ '../build/protoc.gypi' ] 2751 'includes': [ '../build/protoc.gypi' ]
2751 }, 2752 },
2753 {
2754 # Protobuf compiler / generator for the Drive protocol buffer.
2755 'target_name': 'drive_proto',
2756 'type': 'static_library',
2757 'sources': [ 'browser/google_apis/drive.proto' ],
2758 'variables': {
2759 'proto_in_dir': 'browser/google_apis',
2760 'proto_out_dir': 'chrome/browser/google_apis',
2761 },
2762 'includes': [ '../build/protoc.gypi' ]
2763 },
2752 ], 2764 ],
2753 'conditions': [ 2765 'conditions': [
2754 ['OS == "android"', { 2766 ['OS == "android"', {
2755 'targets': [ 2767 'targets': [
2756 { 2768 {
2757 'target_name': 'android_jar_jni_headers', 2769 'target_name': 'android_jar_jni_headers',
2758 'type': 'none', 2770 'type': 'none',
2759 'variables': { 2771 'variables': {
2760 'jni_gen_dir': 'chrome', 2772 'jni_gen_dir': 'chrome',
2761 'input_java_class': 'java/io/InputStream.class', 2773 'input_java_class': 'java/io/InputStream.class',
(...skipping 20 matching lines...) Expand all
2782 'includes': [ '../build/jni_generator.gypi' ], 2794 'includes': [ '../build/jni_generator.gypi' ],
2783 'dependencies': [ 2795 'dependencies': [
2784 'android_jar_jni_headers', 2796 'android_jar_jni_headers',
2785 ], 2797 ],
2786 }, 2798 },
2787 ], 2799 ],
2788 }, 2800 },
2789 ], 2801 ],
2790 ], 2802 ],
2791 } 2803 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/feedback_ui.cc ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698