1cb93a386Sopenharmony_ci// Copyright (c) 2012 The Chromium Authors. All rights reserved. 2cb93a386Sopenharmony_ci// Use of this source code is governed by a BSD-style license that can be 3cb93a386Sopenharmony_ci// found in the LICENSE file. 4cb93a386Sopenharmony_ci 5cb93a386Sopenharmony_ci#include "allowed/good.h" 6cb93a386Sopenharmony_ci// Always allowed to include self. 7cb93a386Sopenharmony_ci#include "disallowed/good.h" 8cb93a386Sopenharmony_ci#include "disallowed/allowed/good.h" 9cb93a386Sopenharmony_ci#include "third_party/explicitly_disallowed/bad.h" 10cb93a386Sopenharmony_ci// Only allowed for code under allowed/. 11cb93a386Sopenharmony_ci#include "third_party/allowed_may_use/bad.h" 12cb93a386Sopenharmony_ci#include "third_party/no_rule/bad.h" 13