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

Side by Side Diff: tools/gn/ninja_bundle_data_target_writer_unittest.cc

Issue 2101923006: Fix BundleData::GetBundleRootDirOutput() for non-default toolchain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@create-bundle-deps
Patch Set: Rebase. Created 4 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #include "tools/gn/ninja_bundle_data_target_writer.h" 5 #include "tools/gn/ninja_bundle_data_target_writer.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <sstream> 8 #include <sstream>
9 9
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "tools/gn/target.h" 11 #include "tools/gn/target.h"
12 #include "tools/gn/test_with_scope.h" 12 #include "tools/gn/test_with_scope.h"
13 13
14 TEST(NinjaBundleDataTargetWriter, Run) { 14 TEST(NinjaBundleDataTargetWriter, Run) {
15 Err err; 15 Err err;
16
17 TestWithScope setup; 16 TestWithScope setup;
18 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/"));
19 17
20 Target bundle_data(setup.settings(), Label(SourceDir("//foo/"), "data")); 18 Target bundle_data(setup.settings(), Label(SourceDir("//foo/"), "data"));
21 bundle_data.set_output_type(Target::BUNDLE_DATA); 19 bundle_data.set_output_type(Target::BUNDLE_DATA);
22 bundle_data.sources().push_back(SourceFile("//foo/input1.txt")); 20 bundle_data.sources().push_back(SourceFile("//foo/input1.txt"));
23 bundle_data.sources().push_back(SourceFile("//foo/input2.txt")); 21 bundle_data.sources().push_back(SourceFile("//foo/input2.txt"));
24 bundle_data.sources().push_back( 22 bundle_data.sources().push_back(
25 SourceFile("//foo/Foo.xcassets/Contents.json")); 23 SourceFile("//foo/Foo.xcassets/Contents.json"));
26 bundle_data.sources().push_back( 24 bundle_data.sources().push_back(
27 SourceFile("//foo/Foo.xcassets/foo.imageset/Contents.json")); 25 SourceFile("//foo/Foo.xcassets/foo.imageset/Contents.json"));
28 bundle_data.sources().push_back( 26 bundle_data.sources().push_back(
(...skipping 17 matching lines...) Expand all
46 "../../foo/input1.txt " 44 "../../foo/input1.txt "
47 "../../foo/input2.txt " 45 "../../foo/input2.txt "
48 "../../foo/Foo.xcassets/Contents.json " 46 "../../foo/Foo.xcassets/Contents.json "
49 "../../foo/Foo.xcassets/foo.imageset/Contents.json " 47 "../../foo/Foo.xcassets/foo.imageset/Contents.json "
50 "../../foo/Foo.xcassets/foo.imageset/FooIcon-29.png " 48 "../../foo/Foo.xcassets/foo.imageset/FooIcon-29.png "
51 "../../foo/Foo.xcassets/foo.imageset/FooIcon-29@2x.png " 49 "../../foo/Foo.xcassets/foo.imageset/FooIcon-29@2x.png "
52 "../../foo/Foo.xcassets/foo.imageset/FooIcon-29@3x.png\n"; 50 "../../foo/Foo.xcassets/foo.imageset/FooIcon-29@3x.png\n";
53 std::string out_str = out.str(); 51 std::string out_str = out.str();
54 EXPECT_EQ(expected, out_str); 52 EXPECT_EQ(expected, out_str);
55 } 53 }
OLDNEW
« no previous file with comments | « tools/gn/ninja_binary_target_writer_unittest.cc ('k') | tools/gn/ninja_copy_target_writer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698