Damien Martin-Guillerez | f88f4d8 | 2015-09-25 13:56:55 +0000 | [diff] [blame] | 1 | // Copyright 2015 The Bazel Authors. All rights reserved. |
Dmitry Lomov | 9d0f914 | 2015-09-01 17:56:32 +0000 | [diff] [blame] | 2 | // |
| 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 | |
| 15 | syntax = "proto3"; |
| 16 | |
| 17 | package blaze; |
| 18 | |
| 19 | |
| 20 | option java_package = "com.google.devtools.build.lib.ideinfo.androidstudio"; |
| 21 | |
Googler | 4bb27491 | 2015-11-04 20:17:17 +0000 | [diff] [blame] | 22 | option java_generate_equals_and_hash = true; |
| 23 | |
Dmitry Lomov | 9d0f914 | 2015-09-01 17:56:32 +0000 | [diff] [blame] | 24 | message ArtifactLocation { |
Googler | 3f80c72 | 2016-02-16 15:25:28 +0000 | [diff] [blame] | 25 | // deprecated -- this is not machine agnostic and will be removed in a future release |
| 26 | string root_path = 1 [deprecated=true]; |
| 27 | |
Dmitry Lomov | 9d0f914 | 2015-09-01 17:56:32 +0000 | [diff] [blame] | 28 | string relative_path = 2; |
Googler | bf95c00 | 2015-10-10 15:56:57 +0000 | [diff] [blame] | 29 | bool is_source = 3; |
Googler | 3f80c72 | 2016-02-16 15:25:28 +0000 | [diff] [blame] | 30 | |
Dmitry Lomov | b14c24b | 2016-02-19 19:39:26 +0000 | [diff] [blame] | 31 | // set for derived artifacts (is_source = false) |
Googler | 3f80c72 | 2016-02-16 15:25:28 +0000 | [diff] [blame] | 32 | string root_execution_path_fragment = 4; |
Dmitry Lomov | 9d0f914 | 2015-09-01 17:56:32 +0000 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | message LibraryArtifact { |
| 36 | ArtifactLocation jar = 1; |
| 37 | ArtifactLocation interface_jar = 2; |
| 38 | ArtifactLocation source_jar = 3; |
| 39 | } |
| 40 | |
| 41 | message JavaRuleIdeInfo { |
| 42 | repeated LibraryArtifact jars = 1; |
| 43 | repeated LibraryArtifact generated_jars = 2; |
| 44 | ArtifactLocation package_manifest = 3; |
Dmitry Lomov | 745e419 | 2015-09-09 12:00:07 +0000 | [diff] [blame] | 45 | repeated ArtifactLocation sources = 4; |
Googler | ea16e10 | 2016-02-04 18:00:33 +0000 | [diff] [blame] | 46 | ArtifactLocation jdeps = 5; |
Dmitry Lomov | 745e419 | 2015-09-09 12:00:07 +0000 | [diff] [blame] | 47 | } |
| 48 | |
Googler | bb2f071 | 2016-03-18 17:33:12 +0000 | [diff] [blame] | 49 | message 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 Lomov | 590767e | 2015-09-22 11:58:30 +0000 | [diff] [blame] | 63 | message AndroidRuleIdeInfo { |
| 64 | repeated ArtifactLocation resources = 1; |
Dmitry Lomov | 590767e | 2015-09-22 11:58:30 +0000 | [diff] [blame] | 65 | ArtifactLocation apk = 3; |
| 66 | repeated ArtifactLocation dependency_apk = 4; |
Dmitry Lomov | 1dbbd3c | 2016-02-23 19:30:26 +0000 | [diff] [blame] | 67 | ArtifactLocation manifest = 5; |
Dmitry Lomov | 590767e | 2015-09-22 11:58:30 +0000 | [diff] [blame] | 68 | string java_package = 7; |
| 69 | bool has_idl_sources = 8; |
Googler | 22616ae | 2015-09-26 20:35:57 +0000 | [diff] [blame] | 70 | LibraryArtifact idl_jar = 9; |
Googler | d59c761 | 2015-11-18 21:35:09 +0000 | [diff] [blame] | 71 | bool generate_resource_class = 10; |
Googler | c50182c | 2016-03-08 22:37:22 +0000 | [diff] [blame] | 72 | string legacy_resources = 11; |
Dmitry Lomov | 590767e | 2015-09-22 11:58:30 +0000 | [diff] [blame] | 73 | } |
| 74 | |
Googler | bb2f071 | 2016-03-18 17:33:12 +0000 | [diff] [blame] | 75 | message 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 Lomov | 9d0f914 | 2015-09-01 17:56:32 +0000 | [diff] [blame] | 87 | message 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 Lomov | 5584e38 | 2015-09-15 14:03:52 +0000 | [diff] [blame] | 96 | JAVA_BINARY = 7; |
| 97 | PROTO_LIBRARY = 8; |
| 98 | ANDROID_SDK = 9; |
Googler | 727d51a | 2016-01-06 21:12:11 +0000 | [diff] [blame] | 99 | JAVA_PLUGIN = 10; |
Googler | c50182c | 2016-03-08 22:37:22 +0000 | [diff] [blame] | 100 | ANDROID_RESOURCES = 11; |
Googler | bb2f071 | 2016-03-18 17:33:12 +0000 | [diff] [blame] | 101 | CC_LIBRARY = 12; |
| 102 | CC_BINARY = 13; |
| 103 | CC_TEST = 14; |
| 104 | CC_INC_LIBRARY = 15; |
| 105 | CC_TOOLCHAIN = 16; |
Googler | c4deece | 2016-03-30 13:10:59 +0000 | [diff] [blame] | 106 | JAVA_WRAP_CC = 17; |
Dmitry Lomov | 9d0f914 | 2015-09-01 17:56:32 +0000 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | string label = 1; |
Googler | f5700b6 | 2016-04-13 16:51:13 +0000 | [diff] [blame^] | 110 | Kind kind = 2 [deprecated=true]; |
Googler | 3f80c72 | 2016-02-16 15:25:28 +0000 | [diff] [blame] | 111 | // deprecated -- this is not machine agnostic and will be removed in a future release |
| 112 | string build_file = 3 [deprecated=true]; |
Dmitry Lomov | 9d0f914 | 2015-09-01 17:56:32 +0000 | [diff] [blame] | 113 | repeated string dependencies = 4; |
Dmitry Lomov | 745e419 | 2015-09-09 12:00:07 +0000 | [diff] [blame] | 114 | |
Dmitry Lomov | 590767e | 2015-09-22 11:58:30 +0000 | [diff] [blame] | 115 | // 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; |
Googler | 4a0f1b6 | 2015-09-30 20:50:14 +0000 | [diff] [blame] | 118 | |
| 119 | repeated string tags = 9; |
Googler | f550d65 | 2016-01-05 22:50:51 +0000 | [diff] [blame] | 120 | repeated string runtime_deps = 10; |
Googler | 3f80c72 | 2016-02-16 15:25:28 +0000 | [diff] [blame] | 121 | |
| 122 | ArtifactLocation build_file_artifact_location = 11; |
Googler | bb2f071 | 2016-03-18 17:33:12 +0000 | [diff] [blame] | 123 | |
| 124 | CRuleIdeInfo c_rule_ide_info = 12; |
| 125 | CToolchainIdeInfo c_toolchain_ide_info = 13; |
Googler | f5700b6 | 2016-04-13 16:51:13 +0000 | [diff] [blame^] | 126 | |
| 127 | string kind_string = 14; |
Dmitry Lomov | 9d0f914 | 2015-09-01 17:56:32 +0000 | [diff] [blame] | 128 | } |