blob: b1f2833a846bd3a1baa54a5c25664cbf7146cd75 [file] [log] [blame]
Damien Martin-Guillerezf88f4d82015-09-25 13:56:55 +00001// Copyright 2015 The Bazel Authors. All rights reserved.
Dmitry Lomov9d0f9142015-09-01 17:56:32 +00002//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto3";
16
17package blaze;
18
19
20option java_package = "com.google.devtools.build.lib.ideinfo.androidstudio";
21
Googler4bb274912015-11-04 20:17:17 +000022option java_generate_equals_and_hash = true;
23
Dmitry Lomov9d0f9142015-09-01 17:56:32 +000024message ArtifactLocation {
Googler3f80c722016-02-16 15:25:28 +000025 // deprecated -- this is not machine agnostic and will be removed in a future release
26 string root_path = 1 [deprecated=true];
27
Dmitry Lomov9d0f9142015-09-01 17:56:32 +000028 string relative_path = 2;
Googlerbf95c002015-10-10 15:56:57 +000029 bool is_source = 3;
Googler3f80c722016-02-16 15:25:28 +000030
Dmitry Lomovb14c24b2016-02-19 19:39:26 +000031 // set for derived artifacts (is_source = false)
Googler3f80c722016-02-16 15:25:28 +000032 string root_execution_path_fragment = 4;
Dmitry Lomov9d0f9142015-09-01 17:56:32 +000033}
34
35message LibraryArtifact {
36 ArtifactLocation jar = 1;
37 ArtifactLocation interface_jar = 2;
38 ArtifactLocation source_jar = 3;
39}
40
41message JavaRuleIdeInfo {
42 repeated LibraryArtifact jars = 1;
43 repeated LibraryArtifact generated_jars = 2;
44 ArtifactLocation package_manifest = 3;
Dmitry Lomov745e4192015-09-09 12:00:07 +000045 repeated ArtifactLocation sources = 4;
Googlerea16e102016-02-04 18:00:33 +000046 ArtifactLocation jdeps = 5;
Dmitry Lomov745e4192015-09-09 12:00:07 +000047}
48
Googlerbb2f0712016-03-18 17:33:12 +000049message CRuleIdeInfo {
50 repeated ArtifactLocation source = 1;
51 repeated ArtifactLocation exported_header = 2;
52
53 repeated string transitive_include_directory = 3;
54 repeated string transitive_quote_include_directory = 4;
55 repeated string transitive_define = 5;
56 repeated string transitive_system_include_directory = 6;
57
58 repeated string rule_copt = 7;
59 repeated string rule_define = 8;
60 repeated string rule_include = 9;
61}
62
Dmitry Lomov590767e2015-09-22 11:58:30 +000063message AndroidRuleIdeInfo {
64 repeated ArtifactLocation resources = 1;
Dmitry Lomov590767e2015-09-22 11:58:30 +000065 ArtifactLocation apk = 3;
66 repeated ArtifactLocation dependency_apk = 4;
Dmitry Lomov1dbbd3c2016-02-23 19:30:26 +000067 ArtifactLocation manifest = 5;
Dmitry Lomov590767e2015-09-22 11:58:30 +000068 string java_package = 7;
69 bool has_idl_sources = 8;
Googler22616ae2015-09-26 20:35:57 +000070 LibraryArtifact idl_jar = 9;
Googlerd59c7612015-11-18 21:35:09 +000071 bool generate_resource_class = 10;
Googlerc50182c2016-03-08 22:37:22 +000072 string legacy_resources = 11;
Dmitry Lomov590767e2015-09-22 11:58:30 +000073}
74
Googlerbb2f0712016-03-18 17:33:12 +000075message CToolchainIdeInfo {
76 string target_name = 1;
77 repeated string base_compiler_option = 2;
78 repeated string cpp_option = 3;
79 repeated string c_option = 4;
80 string preprocessor_executable = 5;
81 string cpp_executable = 6;
82 repeated string link_option = 7;
83 repeated string built_in_include_directory = 8;
84 repeated string unfiltered_compiler_option = 9;
85}
86
Dmitry Lomov9d0f9142015-09-01 17:56:32 +000087message RuleIdeInfo {
88 enum Kind {
89 ANDROID_BINARY = 0;
90 ANDROID_LIBRARY = 1;
91 ANDROID_TEST = 2;
92 ANDROID_ROBOELECTRIC_TEST = 3;
93 JAVA_LIBRARY = 4;
94 JAVA_TEST = 5;
95 JAVA_IMPORT = 6;
Dmitry Lomov5584e382015-09-15 14:03:52 +000096 JAVA_BINARY = 7;
97 PROTO_LIBRARY = 8;
98 ANDROID_SDK = 9;
Googler727d51a2016-01-06 21:12:11 +000099 JAVA_PLUGIN = 10;
Googlerc50182c2016-03-08 22:37:22 +0000100 ANDROID_RESOURCES = 11;
Googlerbb2f0712016-03-18 17:33:12 +0000101 CC_LIBRARY = 12;
102 CC_BINARY = 13;
103 CC_TEST = 14;
104 CC_INC_LIBRARY = 15;
105 CC_TOOLCHAIN = 16;
Googlerc4deece2016-03-30 13:10:59 +0000106 JAVA_WRAP_CC = 17;
Dmitry Lomov9d0f9142015-09-01 17:56:32 +0000107 }
108
109 string label = 1;
Googlerf5700b62016-04-13 16:51:13 +0000110 Kind kind = 2 [deprecated=true];
Googler3f80c722016-02-16 15:25:28 +0000111 // deprecated -- this is not machine agnostic and will be removed in a future release
112 string build_file = 3 [deprecated=true];
Dmitry Lomov9d0f9142015-09-01 17:56:32 +0000113 repeated string dependencies = 4;
Dmitry Lomov745e4192015-09-09 12:00:07 +0000114
Dmitry Lomov590767e2015-09-22 11:58:30 +0000115 // kind is one of {JAVA,ANDROID}_{LIBRARY,BINARY,TEST} and JAVA_IMPORT
116 JavaRuleIdeInfo java_rule_ide_info = 7;
117 AndroidRuleIdeInfo android_rule_ide_info = 8;
Googler4a0f1b62015-09-30 20:50:14 +0000118
119 repeated string tags = 9;
Googlerf550d652016-01-05 22:50:51 +0000120 repeated string runtime_deps = 10;
Googler3f80c722016-02-16 15:25:28 +0000121
122 ArtifactLocation build_file_artifact_location = 11;
Googlerbb2f0712016-03-18 17:33:12 +0000123
124 CRuleIdeInfo c_rule_ide_info = 12;
125 CToolchainIdeInfo c_toolchain_ide_info = 13;
Googlerf5700b62016-04-13 16:51:13 +0000126
127 string kind_string = 14;
Dmitry Lomov9d0f9142015-09-01 17:56:32 +0000128}