-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_bundle_target_generator.h
45 lines (34 loc) · 1.31 KB
/
create_bundle_target_generator.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef TOOLS_GN_CREATE_BUNDLE_TARGET_GENERATOR_H_
#define TOOLS_GN_CREATE_BUNDLE_TARGET_GENERATOR_H_
#include "base/macros.h"
#include "tools/gn/target_generator.h"
class SourceDir;
// Populates a Target with the values from a create_bundle rule.
class CreateBundleTargetGenerator : public TargetGenerator {
public:
CreateBundleTargetGenerator(Target* target,
Scope* scope,
const FunctionCallNode* function_call,
Err* err);
~CreateBundleTargetGenerator() override;
protected:
void DoRun() override;
private:
bool FillBundleDir(const SourceDir& bundle_root_dir,
const base::StringPiece& name,
SourceDir* bundle_dir);
bool FillXcodeExtraAttributes();
bool FillProductType();
bool FillPartialInfoPlist();
bool FillXcodeTestApplicationName();
bool FillCodeSigningScript();
bool FillCodeSigningSources();
bool FillCodeSigningOutputs();
bool FillCodeSigningArgs();
bool FillBundleDepsFilter();
DISALLOW_COPY_AND_ASSIGN(CreateBundleTargetGenerator);
};
#endif // TOOLS_GN_CREATE_BUNDLE_TARGET_GENERATOR_H_