Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added two global variable to record module in building or processing
git-svn-id: https://buildtools.tianocore.org/svn/buildtools/trunk/BaseTools@1292 7335b38e-4728-0410-8992-fb3ffe349368
  • Loading branch information
jwang36 committed Jul 31, 2008
1 parent 8d8c918 commit 2de4da5
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions Source/Python/Common/GlobalData.py
@@ -1,17 +1,21 @@
## @file
# This file is used to define common static strings used by INF/DEC/DSC files
#
# Copyright (c) 2007, Intel Corporation
# All rights reserved. This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
# http://opensource.org/licenses/bsd-license.php
#
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

gEdkCompatibilityPkg = "EdkCompatibilityPkg"
gEdkSource = "Edk"

gGlobalDefines = {}

## @file
# This file is used to define common static strings used by INF/DEC/DSC files
#
# Copyright (c) 2007, Intel Corporation
# All rights reserved. This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
# http://opensource.org/licenses/bsd-license.php
#
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

gEdkCompatibilityPkg = "EdkCompatibilityPkg"
gEdkSource = "Edk"

gGlobalDefines = {}

# for debug trace purpose when problem occurs
gProcessingFile = ''
gBuildingModule = ''

0 comments on commit 2de4da5

Please sign in to comment.